-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.78 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"main": "server/script.js",
"name": "TowerDefense",
"version": "1.0.0",
"engines": {
"node": "8.4.0",
"npm": "5.3.0"
},
"presets": [
"es6"
],
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"body-parser": "^1.18.1",
"bootstrap": "^4.0.0-beta.2",
"cookie-parser": "^1.4.3",
"cool-ascii-faces": "1.3.4",
"css-loader": "^0.28.7",
"editorconfig": "^0.15.0",
"express": "^4.16.2",
"express-history-api-fallback": "^2.2.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"imports-loader": "^0.7.1",
"morgan": "^1.9.0",
"node-sass": "^4.7.2",
"pug": "^2.0.0-rc.4",
"pug-loader": "^2.3.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"three": "^0.84.0",
"three-fbx-loader": "^1.0.2",
"three-obj-loader": "^1.1.3",
"three-orbitcontrols": "^1.2.1",
"url-loader": "^0.6.2",
"uuid": "^3.1.0",
"visibilityjs": "^1.2.6",
"webpack": "^3.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/frontend-park-mail-ru/2017_2_Chunk"
},
"devDependencies": {
"eslint": "^4.12.1",
"eslint-config-airbnb": "^11.2.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.10.3",
"nodemon": "^1.12.1"
},
"scripts": {
"test": "vows --spec",
"start": "webpack && node ./server/index.js",
"build": "webpack",
"lint": "./node_modules/.bin/eslint ./develop/**/**/*.js",
"lint-fix": "./node_modules/.bin/eslint --fix ./develop/**/**/*.js"
}
}