-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 2.26 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
{
"name": "bosslog",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"buildDev": "node-sass scss/master.sass public/css/master.css && browserify web/App.js -t [ babelify --presets [ @babel/preset-env @babel/preset-react ] ] > public/js/app.js",
"build": "npm ci && node-sass scss/master.sass public/css/master.css && browserify web/App.js -t [ babelify --presets [ @babel/preset-env @babel/preset-react ] ] -g [ envify --NODE_ENV production ] -g uglifyify | terser --compress --mangle > public/js/app.js",
"startDev": "npm run buildDev && node server.js",
"start": "npm run build && node server.js",
"forever": "npm run build && pm2 start ecosystem.config.js --only bosslog",
"reload": "npm run build && pm2 reload bosslog"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/cli": "latest",
"@babel/core": "latest",
"@babel/polyfill": "latest",
"@babel/preset-env": "latest",
"@babel/preset-react": "latest",
"awesomplete": "^1.1.2",
"babel": "latest",
"babelify": "latest",
"body-parser": "latest",
"browserify": "latest",
"bulma": "latest",
"compression": "latest",
"connect-mongo": "latest",
"critical": "latest",
"crypto-js": "^3.1.9-1",
"deep-diff": "^1.0.1",
"envify": "^4.1.0",
"express": "latest",
"express-react-views": "latest",
"express-session": "^1.15.6",
"immutable": "^3.8.2",
"in-browser-download": "^1.0.0",
"jquery": "^3.3.1",
"localforage": "^1.7.2",
"lodash": "^4.17.10",
"lz-string": "^1.4.4",
"mark.js": "^8.11.1",
"mongodb": "^3.0.10",
"morgan": "latest",
"node-sass": "latest",
"normalize-url": "^3.0.1",
"passport": "latest",
"passport-google-oauth20": "^1.0.0",
"passport-strategy": "latest",
"pretty-checkbox": "^3.0.3",
"react": "latest",
"react-dom": "latest",
"react-google-login": "^3.2.1",
"react-radio-buttons": "^1.2.2",
"sendinblue-api": "latest",
"shortid": "^2.2.8",
"showdown": "^1.8.6",
"sw-precache": "^5.2.1",
"terser": "^3.7.6",
"turndown": "^4.0.2",
"uglifyify": "^5.0.0",
"url-regex": "^4.1.1",
"uuid": "^3.2.1",
"winston": "latest"
}
}