-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 KB
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
{
"name": "fancy-name-extension",
"version": "0.0.0",
"main": "index.js",
"scripts": {
"webpack": "webpack",
"clean": "rimraf ./build && mkdir build",
"livereload": "livereload ./build -p 35729",
"prestart": "yarn run clean",
"start": "env-cmd ./.env concurrently \"yarn run webpack\" \"yarn run livereload\""
},
"babel": {
"presets": [
"es2015"
]
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"concurrently": "^3.1.0",
"css-loader": "^0.26.1",
"env-cmd": "^4.0.0",
"eslint": "^3.13.1",
"eslint-config-standard": "^6.2.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"leasot": "^4.3.0",
"livereload": "^0.6.0",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.4.0",
"webpack": "^1.14.0"
}
}