-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.21 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
{
"name": "sgt_fullstack",
"version": "1.0.0",
"description": "A project that uses React.jsx for the front-end and Node.js/Express.js/PostgreSQL for the back-end to pass student grade information back and forth",
"main": "server/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode=production",
"client": "webpack-dev-server",
"start": "node server/index.js",
"dev": "npm-run-all --silent --parallel start client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Keith-Tachibana/SGT_Fullstack.git"
},
"author": "Keith Tachibana",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Keith-Tachibana/SGT_Fullstack/issues"
},
"homepage": "https://github.com/Keith-Tachibana/SGT_Fullstack#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"pg": "^7.18.2",
"react": "^16.13.0",
"react-dom": "^16.13.0"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-transform-react-jsx": "^7.8.3",
"babel-loader": "^8.0.6",
"npm-run-all": "^4.1.5",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}