-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·75 lines (75 loc) · 2.18 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
66
67
68
69
70
71
72
73
74
75
{
"name": "Hevens-Webpack",
"version": "1.2.0",
"description": "",
"private": true,
"scripts": {
"start": "webpack-dev-server --mode development",
"build": "rm -rf dist && webpack --mode production && git add dist",
"deploy": "git subtree push --prefix dist origin gh-pages",
"lint-fix": "stylelint 'src/**/*.scss' --fix && eslint src --fix",
"precommit": "lint-staged",
"postcommit": "git update-index --again"
},
"dependencies": {
"dat.gui": "^0.7.5",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"gsap": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"postprocessing": "^5.5.0",
"scrollmagic": "^2.0.5",
"three": "^0.100.0",
"three-orbit-controls": "^82.1.0"
},
"devDependencies": {
"autoprefixer": "^7.1.4",
"babel-core": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"css-loader": "^0.28.7",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-import-resolver-webpack": "^0.8.4",
"eslint-plugin-import": "^2.9.0",
"html-loader": "^0.5.1",
"husky": "^0.14.3",
"imports-loader": "^0.8.0",
"lint-staged": "^7.2.0",
"node-sass": "^4.5.3",
"resolve-url-loader": "^3.0.0",
"sass-loader": "^6.0.6",
"sass-resources-loader": "^1.3.3",
"style-loader": "^0.18.2",
"stylelint": "^9.1.3",
"stylelint-config-recommended-scss": "^3.1.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-declaration-use-variable": "^1.6.1",
"stylelint-scss": "^2.5.0",
"webpack": "^4.27.1",
"webpack-bundle-analyzer": "^2.9.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-glsl-loader": "^1.0.1"
},
"lint-staged": {
"linters": {
"*.scss": [
"stylelint --fix",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
},
"ignore": [
"**/dist/**/*",
"**/icomoon/**/*"
]
}
}