-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 2.29 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
{
"name": "caly-admin",
"version": "0.1.0",
"description": "caly-admin webserver. Mapping recommend to user by Manager",
"author": "Cássio Zen -> Refgjin",
"license": "MIT",
"scripts": {
"clean": "rm -rf build public/bundle.js",
"build": "./node_modules/.bin/babel server --out-dir build && ./node_modules/.bin/webpack --progress",
"start": "rm -rf build public/bundle.js && ./node_modules/.bin/babel server --out-dir build && ./node_modules/.bin/webpack --progress && NODE_ENV=production forever start -l forever.log -o forever-out.log -e forever-err.log ./build/main.js",
"restart": "sudo rm -r /home/refgjin/.forever/forever.log && rm -rf build public/bundle.js && ./node_modules/.bin/babel server --out-dir build && ./node_modules/.bin/webpack --progress && NODE_ENV=production forever start -l forever.log -o forever-out.log -e forever-err.log ./build/main.js",
"dev": "rm -rf build public/bundle.js && ./node_modules/.bin/babel server --out-dir build && ./node_modules/.bin/webpack --progress && NODE_ENV=production node ./build/main.js",
"dev-run": "rm -rf build public/bundle.js && ./node_modules/.bin/babel server --out-dir build && ./node_modules/.bin/webpack --progress && NODE_ENV=production nodemon ./build/main.js"
},
"devDependencies": {
"babel-core": "~6.7.*",
"babel-cli": "~6.9.*",
"babel-loader": "~6.2.*",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-es2015": "~6.6.*",
"babel-preset-react": "~6.5.*",
"react-hot-loader": "^1.3.1",
"react-transform-hmr": "^1.0.4",
"webpack": "~1.12.*",
"webpack-dev-server": "~1.14.*"
},
"dependencies": {
"async": "^2.4.0",
"asyncawait": "^1.0.6",
"babel-polyfill": "~6.7.*",
"body-parser": "^1.17.1",
"checkbox-group": "^2.0.0",
"express": "^4.14.1",
"marked": "^0.3.5",
"mysql": "^2.11.1",
"react": "^15.0.0",
"react-addons-css-transition-group": "^15.4.2",
"react-addons-update": "^15.0.0",
"react-alert": "^1.0.14",
"react-checkbox-group": "^3.1.0",
"react-cookie": "^1.0.5",
"react-dnd": "^2.1.4",
"react-dnd-html5-backend": "^2.1.2",
"react-dom": "^15.0.0",
"react-radio-group": "^3.0.1",
"react-select": "^1.0.0-rc.3",
"request-promise": "^4.1.1",
"sync": "^0.2.5",
"whatwg-fetch": "^0.11.0"
}
}