-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
62 lines (62 loc) · 1.71 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
{
"name": "scratch-project",
"version": "1.0.0",
"description": "",
"main": "index.jsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon ./server/server.js",
"compile": "tsc",
"build": "webpack",
"server": "webpack-dev-server --open --hot",
"dev": "concurrently --kill-others \"npm start\" \"npm run server\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/tysong24/scratch-project.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tysong24/scratch-project/issues"
},
"homepage": "https://github.com/tysong24/scratch-project#readme",
"dependencies": {
"axios": "^0.20.0",
"body-parser": "^1.19.0",
"bootstrap": "^4.5.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"got": "^11.6.2",
"node": "^14.8.0",
"pg": "^8.3.3",
"pg-promise": "^10.6.1",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.13.1",
"react-hooks": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@tsconfig/node12": "^1.0.7",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"babel-loader": "^8.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"concurrently": "^5.3.0",
"css-loader": "^4.3.0",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.4.1",
"nodemon": "^2.0.4",
"react-hot-loader": "^4.12.21",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"url-loader": "^4.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}