-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.32 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "dwm-devwebavance",
"version": "1.0.0",
"description": "Package description",
"main": "index.html",
"scripts": {
"markdownlint": "./node_modules/.bin/markdownlint *.md || exit 0",
"eslint": "./node_modules/.bin/eslint src/** || exit 0",
"lint": "npm run markdownlint && npm run eslint",
"clean": "rm -rf dist/*",
"dev": "npm run lint && npm run clean && webpack-dev-server --env=dev",
"build": "npm run lint && npm run clean && webpack --env=prod --progress --profile",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mathieudelvaux/DWM-DevWebAvance.git"
},
"author": "Mathieu Delvaux",
"license": "ISC",
"bugs": {
"url": "https://github.com/mathieudelvaux/DWM-DevWebAvance/issues"
},
"homepage": "https://github.com/mathieudelvaux/DWM-DevWebAvance#readme",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-preset-env": "^1.1.10",
"eslint": "^3.16.1",
"lodash": "^4.17.4",
"markdownlint-cli": "^0.2.0",
"three-orbit-controls": "^82.1.0",
"three-stats": "^1.0.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1",
"webpack-merge": "^3.0.0"
},
"dependencies": {
"three": "^0.84.0"
}
}