-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.64 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
76
77
78
79
80
81
82
{
"name": "ljd-nature-of-code",
"host": "nature-of-code.ljd.dk",
"version": "0.1.7",
"description": "Various examples, experiments and utils that I've made as part of reading [The Nature of Code](http://natureofcode.com/).",
"scripts": {
"build": "rimraf build && webpack --config webpack/prod.babel.js",
"deploy": "npm run build && ./deploy.sh",
"dev": "rimraf build && webpack-dev-server --config webpack/dev.babel.js --progress",
"pretty-quick": "pretty-quick",
"start": "npm run build && http-server ./build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/laustdeleuran/nature-of-code.git"
},
"author": "Laust Deleuran <[email protected]>",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/laustdeleuran/nature-of-code/issues"
},
"homepage": "https://github.com/laustdeleuran/nature-of-code#readme",
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"bowser": "^1.9.3",
"browser-sync": "^2.26.5",
"browser-sync-webpack-plugin": "^2.2.2",
"browsernizr": "^2.2.0",
"captainslog": "^0.3.2",
"classnames": "^2.2.6",
"cname-webpack-plugin": "^1.0.2",
"color": "^3.0.0",
"css-loader": "^0.28.11",
"dat-gui": "^0.5.0",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"file-loader": "^1.1.11",
"glob": "^7.1.2",
"html-webpack-plugin": "^4.0.0-beta.5",
"http-server": "^0.11.1",
"husky": "^2.1.0",
"koalition-utils": "https://bitbucket.org/koalition/koalition-utils.git#v1.5.6",
"lodash": "^4.17.11",
"node-sass": "^4.12.0",
"path": "^0.12.7",
"postcss-loader": "^2.1.5",
"prettier": "^1.17.0",
"pretty-quick": "^1.10.0",
"progress-bar-webpack-plugin": "^1.11.0",
"raf": "^3.4.0",
"res": "^0.4.0",
"rimraf": "^2.6.2",
"roughjs": "^3.1.0",
"sass-loader": "^7.0.3",
"simplex-noise": "^2.4.0",
"stats.js": "^0.17.0",
"style-loader": "^0.21.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.3.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}