forked from open-source-LA38/Scratch-Project
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
86 lines (86 loc) · 2.55 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
{
"name": "Uptime",
"version": "1.0.0",
"description": "",
"main": "./client/index.jsx",
"scripts": {
"start": "nodemon server/server.js",
"test": "jest",
"build": "cross-env NODE_ENV=production webpack",
"frontend": "NODE_ENV=development webpack-dev-server --open",
"dev": "concurrently \"cross-env NODE_ENV=development webpack-dev-server --open\" \"nodemon ./server/server.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoonyoungKim025/Scratch-Project.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/JoonyoungKim025/Scratch-Project/issues"
},
"homepage": "https://github.com/JoonyoungKim025/Scratch-Project#readme",
"jest": {
"verbose": true,
"globalSetup": "./jest-setup.js",
"globalTeardown": "./jest-teardown.js"
},
"dependencies": {
"@babel/plugin-transform-async-to-generator": "^7.10.4",
"@babel/runtime": "^7.11.2",
"axios": "^0.20.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"bootstrap": "^4.5.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"node-cron": "^2.0.3",
"node-fetch": "^2.6.1",
"pg": "^8.3.3",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"babel-core": "^6.26.3",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"isomorphic-fetch": "^2.2.1",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"redux-devtools-extension": "^2.13.8",
"sass": "^1.26.10",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"supertest": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}