-
Notifications
You must be signed in to change notification settings - Fork 96
/
package.json
91 lines (91 loc) · 3.01 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "translate",
"version": "0.1.1",
"private": true,
"license": "MIT",
"main": "build/index.js",
"scripts": {
"console": "babel-node app/index.js console",
"debug": "node --inspect app/start.js & webpack -d -w",
"start": "node app/start.js & webpack -d -w",
"nodemon": "nodemon app/index.js & webpack --progress --colors --watch",
"build": "NODE_ENV=production webpack -p && rm -rf build/ && babel -d build app",
"pm2": "NODE_ENV=production pm2 start build/index.js -i 2 --name \"trans\" --max-memory-restart 300M --merge-logs --log-date-format=\"YYYY-MM-DD HH:mm Z\" --output=\"log/production.log\"",
"pm2:restart": "NODE_ENV=production pm2 restart \"trans\"",
"pm2:stop": "NODE_ENV=production pm2 stop \"trans\"",
"pm2:monit": "NODE_ENV=production pm2 monit \"trans\"",
"pm2:logs": "NODE_ENV=production pm2 logs \"trans\"",
"webpack_dev": "webpack --config --progress --colors --watch",
"lint": "eslint . --ext .js"
},
"dependencies": {
"bootstrap": "^3.3.6",
"cheerio": "^0.22.0",
"classnames": "^2.2.5",
"css-loader": "^0.23.1",
"debug": "^2.2.0",
"extract-text-webpack-plugin": "^1.0.1",
"fetch": "^1.1.0",
"font-awesome": "^4.6.3",
"immutable": "^3.8.1",
"jquery": "^3.0.0",
"koa": "^2.0.0-alpha.7",
"koa-bodyparser": "^3.2.0",
"koa-convert": "^1.2.0",
"koa-generic-session": "^1.11.5",
"koa-json": "^1.1.1",
"koa-logger": "^2.0.0",
"koa-methodoverride": "^2.0.0",
"koa-router": "^7.0.0",
"koa-static": "^2.0.0",
"koa-views": "^5.0.2",
"lodash": "^4.16.6",
"moment": "^2.14.1",
"pug": "^2.0.0-beta11",
"rc-queue-anim": "^0.13.0",
"react": "^15.3.1",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"react-router": "^2.5.2",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"request-promise": "^4.1.1",
"safe-eval": "^0.3.0",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"translate-api": "^0.3.18",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-manifest-plugin": "^1.0.1",
"whatwg-fetch": "^2.0.2"
},
"devDependencies": {
"autoprefixer": "^6.4.1",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.7",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-node": "^6.1.1",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-3": "^6.22.0",
"babel-register": "^6.9.0",
"eslint": "^3.5.0",
"eslint-config-volox": "^1.0.2",
"eslint-loader": "^1.5.0",
"eslint-plugin-react": "^6.2.2",
"html-webpack-plugin": "^2.28.0",
"nodemon": "^1.11.0",
"postcss-cssnext": "^2.8.0",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.11.1",
"postcss-reporter": "^1.4.1",
"precss": "^1.4.0",
"stylelint": "^7.2.0",
"stylelint-config-standard": "^13.0.0",
"uglifyjs-webpack-plugin": "^0.3.0",
"webpack-dev-server": "^1.14.1"
}
}