forked from un-loop/unloop-bootcamp-static-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.27 KB
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
{
"name": "pollproject",
"version": "1.0.0",
"description": "Static website for unloop bootcamp",
"main": "./server/server.js",
"config": {
"environment": "development",
"port": "3000",
"dynamoEndpoint": "http://localhost:8000",
"dynamoRegion": "us-west-2",
"saltRounds": 10,
"passwordExpirationDays": 0
},
"scripts": {
"server": "node server/server.js",
"server:watch": "nodemon --delay 3 --watch server -e * --exec npm run server",
"start": " npm-run-all --parallel server:watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/un-loop/checkin-app.git"
},
"author": "Michael Armes",
"license": "MIT",
"bugs": {
"url": "https://github.com/un-loop/PollProject/issues"
},
"homepage": "https://github.com/un-loop/PollProject#readme",
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/runtime": "^7.11.2",
"@material-ui/icons": "^4.9.1",
"koa": "^2.13.0",
"unloop-static-router": "^1.0.0"
},
"devDependencies": {
"@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-loader": "^8.1.0",
"file-loader": "^3.0.1",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5"
}
}