forked from FourSmartFellows/Trivianetix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "scratch-project",
"version": "1.0.0",
"description": "a project",
"main": "index.js",
"scripts": {
"start": "node ./server/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "NODE_ENV=development nodemon server/server.js & webpack-dev-server --open",
"build": "NODE_ENV=production webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ElMewTwoChapo/scratch-project.git"
},
"author": "no one",
"license": "ISC",
"bugs": {
"url": "https://github.com/ElMewTwoChapo/scratch-project/issues"
},
"homepage": "https://github.com/ElMewTwoChapo/scratch-project#readme",
"dependencies": {
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"babel-loader": "^8.0.6",
"express": "^4.17.1",
"path": "^0.12.7",
"pg": "^7.17.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"webpack": "^4.41.5"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"css-loader": "^3.4.1",
"nodemon": "^2.0.2",
"style-loader": "^1.1.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}