-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.43 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.43 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
40
41
42
43
44
45
{
"name": "eager-example-babel-app",
"version": "0.0.0",
"description": "",
"main": "app.js",
"scripts": {
"build": "NODE_ENV=production npm run lint && rollup -c --environment NODE_ENV:production && npm run build:css",
"build:css": "postcss --use autoprefixer -o build/app.css source/app.css",
"build:js": "rollup -c",
"lint": "eslint ./source",
"watch:js": "babel --watch --out-dir build source",
"watch:css": "postcss --watch --use autoprefixer -o build/app.css source/app.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EagerApps/ExampleBabelApp.git"
},
"author": "Eager",
"license": "MIT",
"bugs": {
"url": "https://github.com/EagerApps/ExampleBabelApp/issues"
},
"homepage": "https://github.com/EagerApps/ExampleBabelApp#readme",
"dependencies": {},
"devDependencies": {
"autoprefixer": "6.3.6",
"babel-cli": "6.8.0",
"babel-eslint": "6.0.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-es2015-rollup": "1.1.1",
"babel-preset-stage-0": "6.5.0",
"babelrc-rollup": "1.2.0",
"eslint": "2.9.0",
"eslint-loader": "1.3.0",
"eslint-plugin-babel": "3.2.0",
"postcss-cli": "2.5.2",
"rollup": "0.34.1",
"rollup-plugin-babel": "2.6.1",
"rollup-plugin-commonjs": "3.1.0",
"rollup-plugin-includepaths": "0.1.5",
"rollup-plugin-node-resolve": "1.7.1",
"rollup-plugin-string": "2.0.2",
"rollup-watch": "2.5.0"
}
}