-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
93 lines (93 loc) Β· 3.02 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
92
93
{
"name": "vanilla-express-webpack-babel-Starter-kit",
"version": "1.0.0",
"description": "Starter with Vanilla & Express & Webpack & Babel for Web Server and Client dev",
"main": "index.js",
"scripts": {
"start": "concurrently \"cp ./.env.prod ./.env\" \"npm run build-dev\" \"babel-node --config-file ./Server/.babelrc ./Server/app.js\"",
"dev": "concurrently \"cp ./.env.dev ./.env\" \"npm run build-dev\" \"nodemon\"",
"build-prod": "webpack --config webpack.config.prod.js",
"build-dev": "webpack --config ./webpack.config.dev.js",
"test": "node_modules/.bin/mocha --require=@babel/register ./server/test/apiTest.spec.js",
"front-dev-server": "webpack-dev-server --config webpack.config.dev.js",
"back-dev-server": "nodemon --config ./nodemon.json",
"dev-server": "concurrently \"npm run back-dev-server\" \"npm run front-dev-server\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Changyu-Ryou/javascript-w5-accountbook.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Changyu-Ryou/javascript-w5-accountbook/issues"
},
"homepage": "https://github.com/Changyu-Ryou/javascript-w5-accountbook#readme",
"dependencies": {
"axios": "^0.21.0",
"bootstrap": "^4.5.3",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.3.0",
"cookie-parser": "~1.4.4",
"core-js": "^3.6.5",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"html-loader": "^1.3.1",
"http-errors": "~1.6.3",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.9.1",
"mysql2": "^2.2.5",
"nodemon": "^2.0.4",
"passport": "^0.4.1",
"passport-github": "^1.1.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"react": "^17.0.1",
"react-bootstrap": "^1.4.0",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"sequelize": "^6.3.5",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.12.3",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@babel/register": "^7.12.1",
"@babel/runtime": "^7.12.5",
"@babel/runtime-corejs3": "^7.12.5",
"@iconify/icons-octicon": "^1.0.8",
"@iconify/react": "^1.1.3",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"css-loader": "^4.3.0",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.0",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.5.0",
"i": "^0.3.6",
"mocha": "^8.2.0",
"node-sass": "^5.0.0",
"prettier": "^2.1.2",
"sass-loader": "^10.0.5",
"sequelize-cli": "^6.2.0",
"should": "^13.2.3",
"style-loader": "^1.2.1",
"supertest": "^6.0.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}