-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 788 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 788 Bytes
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
{
"name": "nature_of_code",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"dev": "webpack --mode development",
"build": "webpack --mode production",
"watch": "webpack --watch",
"start": "webpack-dev-server --mode development --open"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"copy-webpack-plugin": "^4.5.1",
"polyfill": "^0.1.0",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.12"
},
"dependencies": {
"babel-loader": "^7.1.4",
"eslint": "^4.19.1",
"lodash": "^4.17.5",
"p5": "^0.6.0",
"path": "^0.12.7",
"webpack-dev-server": "^3.1.1"
},
"babel": {
"presets": [
"es2015"
]
}
}