-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
78 lines (78 loc) · 2.61 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
74
75
76
77
78
{
"name": "ash-nazg",
"version": "0.0.4",
"scripts": {
"start": "node server.js",
"watch-server": "nodemon -w server.js -w gh.js -w store.js -w log.js --exec 'npm run start'",
"build-js-debug": "browserify app.jsx --debug | exorcist public/js/app.js.map > public/js/app.js",
"build-js": "NODE_ENV=production browserify app.jsx | uglifyjs - -c warnings=false -m > public/js/app.js",
"XXXX old version watch-js": "nodemon -e jsx,js --watch app.jsx --watch ./components/ --watch ./application/ --watch ./stores/ --watch ./actions/ --exec 'npm run build-js'",
"watch-js": "watchify app.jsx --verbose --ignore-watch=\"**/node_modules/**\" --ignore-watch=\"**/public/**\" -o 'uglifyjs - -c warnings=false -m > public/js/app.js'",
"build-css": "cleancss -o public/css/app.min.css app.css",
"watch-css": "nodemon --ignore ./public/ -e css --exec 'npm run build-css'",
"build": "npm run build-css && NODE_ENV=production npm run build-js",
"watch": "npm run watch-css & npm run watch-js",
"expose": "ngrok http -subdomain=ashnazg 3043",
"test": "npm run build && mocha test/server-spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/w3c/ash-nazg.git"
},
"license": "MIT",
"devDependencies": {
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babelify": "7.3.0",
"browserify": "14.4.0",
"clean-css-cli": "^4.3.0",
"exorcist": "0.4.0",
"flux": "3.1.2",
"isomorphic-fetch": "2.2.1",
"mocha": "3.4.2",
"ngrok": "4.0.1",
"nock": "13.2.9",
"nodemon": "1.11.0",
"normalize.css": "7.0.0",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-router": "3.0.5",
"supertest": "6.3.1",
"uglifyify": "3.0.4",
"ungrid": "1.0.1",
"watchify": "3.9.0"
},
"dependencies": {
"@octokit/core": "^3.1.0",
"@octokit/plugin-paginate-rest": "^2.2.3",
"async": "2.5.0",
"bl": "4.0.3",
"body-parser": "1.17.2",
"cradle": "0.7.1",
"curry": "1.2.0",
"doasync": "^2.0.1",
"es6-object-assign": "1.1.0",
"es6-promise": "4.1.1",
"expect.js": "0.3.1",
"express": "4.15.3",
"express-session": "1.15.3",
"express-winston": "2.4.0",
"node-w3capi": "^2.1.0",
"nodemailer": "6.4.16",
"nodemailer-mock-transport": "1.3.0",
"object-assign": "4.1.1",
"passport": "0.3.2",
"passport-github2": "0.1.10",
"password-generator": "2.1.0",
"proxyquire": "1.8.0",
"react-radio-group": "^3.0.2",
"serve-static": "1.12.3",
"session-file-store": "1.0.0",
"winston": "2.3.1"
},
"browserify": {
"transform": [
"babelify"
]
}
}