-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.58 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
{
"name": "rollup_setup",
"version": "1.0.0",
"description": "this is a boilerplate project for writing modern javascript that works in the browser",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run watch",
"watch": "run-p watch-css watch-js serve && echo '\n\n===== watching js and scss file changes, and recompiling/ =====\n\n'",
"watch-js": "rollup -c -w",
"serve": "node server.js",
"watch-css": "node-sass -w ./style.scss -o --output-style compressed ./style.css",
"build": "echo '\n\n===== building js and scss files for production =====\n\n' && npm run build-js && npm run build-css",
"build-js": "NODE_ENV=production rollup -c",
"build-css": "node-sass --output-style compressed style.scss ./style.css"
},
"repository": {
"type": "git",
"url": "https://github.com/jamesjsewell/rollup_setup"
},
"keywords": [
"rollup",
"es6",
"build",
"watch"
],
"author": "james sewell",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"chokidar": "^2.0.2",
"connect": "^3.6.6",
"express": "^4.16.2",
"node-sass": "^4.7.2",
"npm-run-all": "^4.1.2",
"rollup": "^0.56.2",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.3",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"rollup-watch": "^4.3.1",
"watchify": "^3.10.0"
}
}