This repository has been archived by the owner on Jun 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.36 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
{
"name": "gongmo",
"version": "1.0.0",
"description": "창의 it 공모 제출 시스템",
"main": "./app/app.js",
"scripts": {
"wait": "wait-on tcp:$MYSQL_HOST:$MYSQL_INTERNAL_PORT",
"start:dev": "yarn wait && concurrently \"yarn build:dev\" \"nodemon app/app.js -L --ignore app/assets/ --ignore app/views/ --ignore content/\"",
"start:prod": "yarn wait && pm2 start ecosystem.config.js --env production --watch",
"start:docker": "yarn wait && pm2-runtime start --env production config/ecosystem.config.js",
"build:dev": "cross-env NODE_ENV=development webpack-dev-server --config config/webpack.config.babel.js --inline --hot",
"build:prod": "cross-env NODE_ENV=production webpack --config config/webpack.config.babel.js --progress --hide-modules",
"lint": "standard"
},
"standard": {
"ignore": [
"*.bundle.js"
]
},
"author": "a1p4ca",
"license": "MIT",
"dependencies": {
"archiver": "^3.0.0",
"axios": "^0.16.2",
"body-parser": "^1.18.2",
"bulma": "^0.6.1",
"compression": "^1.7.1",
"cookie-parser": "^1.4.3",
"dimigo": "^1.0.2",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"express-flash": "0.0.2",
"express-session": "^1.15.6",
"hash.js": "^1.1.3",
"helmet": "^3.15.0",
"knex": "^0.15.2",
"moment": "^2.19.2",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"mysql": "^2.16.0",
"noto-sans-kr": "^0.1.1",
"pug": "^2.0.0-rc.4",
"serve-favicon": "^2.4.5",
"session-file-store": "^1.1.2",
"sweetalert2": "^7.29.0",
"wait-on": "^3.2.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"concurrently": "^4.0.1",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"eslint": "^4.11.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^0.11.2",
"node-sass": "^4.10.0",
"nodemon": "^1.18.6",
"pm2": "^3.2.2",
"sass-loader": "^6.0.6",
"standard": "^10.0.3",
"style-loader": "^0.18.2",
"webpack": "^3.8.1",
"webpack-dev-server": "2"
}
}