-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "turfu-starter",
"version": "1.0.0",
"description": "A project boilerplate for the web of the future. Le turfu.",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open --env.development",
"build": "npx webpack --env.production"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"@emotion/babel-preset-css-prop": "^10.0.7",
"babel-loader": "^8.0.5",
"babel-minify": "^0.5.0",
"clean-webpack-plugin": "^1.0.1",
"emotion": "^10.0.7",
"glslify": "^7.0.0",
"glslify-fancy-imports": "^1.0.1",
"glslify-hex": "^2.1.1",
"glslify-import": "^3.1.0",
"glslify-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"prettier": "^1.16.4",
"raw-loader": "^1.0.0",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"animejs": "^3.0.1",
"css-reset": "watsondg/css-reset",
"nk-css-utils": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}