-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.53 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
{
"name": "showroom",
"version": "1.0.0",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --open --config webpack/webpack.config.js",
"lint": "eslint --ext .js src module",
"lint:fix": "npm run lint -- --fix",
"build": "webpack --config webpack/webpack.config.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,vue}": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"@tweenjs/tween.js": "^17.4.0",
"babel-polyfill": "^6.26.0",
"bluebird": "^3.5.5",
"es6-promise": "^4.2.8",
"jquery": "^3.4.1",
"jquery-mousewheel": "^3.1.13",
"jquery-tap": "^1.3.0",
"lodash": "^4.17.14",
"seedrandom": "^3.0.1",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@babel/parser": "^7.5.5",
"@wildpeaks/three-webpack-plugin": "^2.0.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"babel-types": "^6.26.0",
"babylon": "^6.18.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^3.0.0",
"eslint": "^6.0.1",
"eslint-loader": "^2.2.1",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.0",
"imports-loader": "^0.8.0",
"lint-staged": "^9.2.0",
"raw-loader": "^3.1.0",
"style-loader": "^0.23.1",
"three": "0.106.2",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
}
}