-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
72 lines (72 loc) · 2.11 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
{
"name": "inventory_management",
"version": "1.0.0",
"description": "재고관리를 위한 오픈 프로그램",
"main": "index.js",
"scripts": {
"local:watch": "webpack --config webpack.config.js --mode none --watch",
"local:server": "nodemon ./index.js --exec babel-node",
"local": " cross-env NODE_ENV=local npm-run-all --parallel local:watch local:server",
"prebuild": "cross-env NODE_ENV=production webpack --config webpack.config.js --mode production",
"build": "babel src -d dist"
},
"author": {
"name": "tomochan shim",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@koa/cors": "^3.1.0",
"@sendgrid/mail": "^7.2.5",
"axios": "^0.20.0",
"bootstrap": "^4.5.2",
"cross-env": "^7.0.2",
"ejs": "^3.1.5",
"flatpickr": "^4.6.6",
"ip6addr": "^0.2.3",
"jquery": "^3.5.1",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.0",
"koa-body": "^4.2.0",
"koa-combine-routers": "^4.0.2",
"koa-logger": "^3.2.1",
"koa-router": "^9.4.0",
"koa-static": "^5.0.0",
"koa-useragent": "^4.0.0",
"koa-views": "^6.3.0",
"moment": "^2.27.0",
"mysql2": "^2.1.0",
"node-rsa": "^1.1.1",
"numeral": "^2.0.6",
"popper.js": "^1.16.1",
"recaptcha-v3": "^1.8.0",
"request-ip": "^2.1.3",
"sweetalert": "^2.1.2",
"validator": "^13.1.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"babel-loader": "^8.1.0",
"comment-parser": "^0.7.2",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"glob": "^7.1.6",
"nodemon": "^2.0.3",
"npm-run-all": "^4.1.5",
"style-loader": "^1.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-log": "^3.0.1"
}
}