-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.32 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
{
"name": "app",
"version": "1.0.0",
"description": "To plan!",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "run-p build:* serve watch:*",
"build:sass-base": "node-sass base-styles -o static --importer node_modules/node-sass-glob-importer/dist/cli.js --output-style compressed",
"build:sass-components": "node-sass views -o static --importer node_modules/node-sass-glob-importer/dist/cli.js --output-style compressed",
"build:js": "rollup -c",
"watch:sass-base": "sane \"npm run build:sass-base\" base-styles --glob=**/*.scss",
"watch:sass-components": "sane \"npm run build:sass-components\" views --glob=**/*.scss",
"watch:js": "sane \"npm run build:js\" views/components --glob=**/*.js",
"serve": "node ui-server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"jquery": "^3.1.1",
"mongoose": "^4.7.1",
"npm-run-all": "^3.1.2"
},
"devDependencies": {
"express-handlebars": "^3.0.0",
"node-sass": "^4.0.0",
"node-sass-glob-importer": "^3.0.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^6.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-uglify": "^1.0.1",
"sane": "^1.4.1",
"tape": "^4.6.3"
}
}