-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.27 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
{
"name": "pi-validator",
"version": "1.0.0",
"description": "Dashboard expanssion for PI",
"main": "index.js",
"scripts": {
"install": "bower install",
"test": "eslint src",
"js": "rollup --config --sourcemap",
"watch:js": "rollup --config --sourcemap --watch",
"css": "node-sass src/style/style.scss --output dist --source-map=true",
"watch:css": "node-sass -w src/style --output dist --source-map=true",
"watch": "npm-run-all --parallel watch:*",
"serve": "node fixtures/fixtures.js",
"bundle": "npm-run-all --parallel js css",
"bust-cache": "sed -i'' -e \"s/\\(?v=\\)[0-9]*/\\1$(date +%s)/\" index.html",
"prebundle": "npm run bust-cache",
"prewatch": "npm run bust-cache",
"prestart": "npm run bust-cache",
"start": "npm-run-all --parallel serve watch:*"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"bower": "^1.6.8",
"mithril": "^0.2.8",
"mode-sass": "^1.0.0",
"node-sass": "^6.0.1"
},
"devDependencies": {
"body-parser": "^1.14.2",
"buble": "^0.12.3",
"eslint": "^1.10.2",
"express": "^4.14.0",
"mithril": "^0.2.8",
"multer": "^1.1.0",
"npm-run-all": "^2.3.0",
"rollup": "^0.33.0",
"rollup-plugin-buble": "^0.12.1",
"rollup-watch": "^2.4.0"
}
}