-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.69 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "sw_skelton",
"version": "0.0.1",
"private": true,
"engines": {
"node": "10.x",
"npm": "6.x"
},
"scripts": {
"start": "node src/server/index.js",
"start:dev": "node-dev src/server/index.js",
"build": "run-s build:**",
"build:client": "browserify --verbose -t [ babelify ] -g [ uglifyify --keep_fnames ] src/client/js/index.js -o public/index.js",
"build:serviceworker": "browserify --verbose -t [ babelify ] -g [ uglifyify --keep_fnames ] src/serviceworker/index.js -o public/serviceworker.js",
"build:sass": "node-sass src/client/css/app.scss --include-path ./node_modules/bootstrap-sass/assets/stylesheets --include-path ./node_modules/font-awesome/scss --include-path ./node_modules/highlight.js/styles --output-style compressed -o public/assets/css/",
"build:assets": "scripts/build-assets/index.sh",
"build:assets-json": "node scripts/build-assets/assets-json.js",
"test": "standard",
"watch": "run-p watch:**",
"watch:client": "watchify --verbose --debug -t [ babelify ] -p browserify-notify src/client/js/index.js -o public/index.js",
"watch:serviceworker": "watchify --verbose --debug -t [ babelify ] -p browserify-notify src/serviceworker/index.js -o public/serviceworker.js",
"watch:sass": "chokidar 'src/client/css/**/*.scss' -c 'npm run build:sass -- --source-map-embed' --initial",
"watch:assets": "chokidar 'src/client/img/**' -c 'npm run build:assets' --initial",
"watch:assets-json": "chokidar 'src/' -c 'npm run build:assets-json' --initial"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-register": "^6.24.1",
"browserify-notify": "^1.1.2",
"chokidar-cli": "^1.2.2",
"node-dev": "^3.1.3",
"standard": "11.0.0",
"watchify": "^3.11.1"
},
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/polyfill": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.0",
"babelify": "^10.0.0",
"bootstrap": "^3.4.1",
"bootstrap-sass": "^3.4.1",
"browserify": "^16.2.3",
"browserify-shim": "^3.8.14",
"browserify-zlib": "^0.2.0",
"debug": "^3.1.0",
"ejs": "^2.6.1",
"express": "^4.16.3",
"express-force-ssl": "^0.3.2",
"font-awesome": "^4.6.3",
"highlight.js": "^9.12.0",
"moment": "^2.22.2",
"morgan": "^1.9.1",
"mz": "^2.7.0",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.3",
"path": "^0.12.7",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"uglifyify": "^5.0.0"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"/build",
"/public"
]
},
"heroku-run-build-script": true
}