-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"private": true,
"engines": {
"node": ">=0.10.0"
},
"homepage": "https://graysonhicks.github.io/pallypal",
"devDependencies": {
"browserify": "^12.0.0",
"browserify-shim": "^3.8.12",
"gh-pages": "^1.0.0",
"live-server": "^0.9.2",
"onchange": "^2.0.0",
"parallelshell": "^2.0.0",
"watchify": "^3.7.0"
},
"scripts": {
"sass": "sass --style compressed --update app/styles/app.scss:app/styles/app.css",
"browserify": "browserify app/scripts/index.js -o app/scripts/bundle.js",
"watch:sass": "sass --watch app/styles/app.scss:app/styles/app.css",
"watch:js": "watchify app/scripts/index.js -o app/scripts/bundle.js",
"server": "live-server --open=app",
"watch": "parallelshell \"npm run watch:sass\" \"npm run watch:js\" \"npm run server\"",
"deploy": "gh-pages -d app"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"jQuery": "$"
},
"dependencies": {
"bootstrap": "^4.0.0-beta",
"bootstrap-sass": "^3.3.6",
"jquery": "^2.2.0",
"color-scheme": "^1.0.0",
"font-color-contrast": "^1.0.3",
"ntc": "0.0.1",
"tinycolor2": "^1.4.1"
}
}