-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.86 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
87
88
89
90
{
"name": "checkin-app",
"version": "1.0.0",
"description": "Checkin App for Unloop events",
"main": "./server/server.js",
"config": {
"environment": "development",
"port": "3000",
"dynamoEndpoint": "https://dynamodb.us-west-2.amazonaws.com",
"dynamoRegion": "us-west-2",
"saltRounds": 10,
"passwordExpirationDays": 0
},
"scripts": {
"build:error": "webpack --config error/webpack.config.js",
"build:client": "webpack --config client/webpack.config.js",
"build": "npm-run-all build:error build:client",
"build:watch": "nodemon --watch client --watch components --watch error --exec npm run build",
"server": "node server/server.js",
"server:watch": "nodemon --delay 3 --watch server --exec npm run server",
"dev": "cross-env NODE_ENV=development npm-run-all --parallel build:watch server:watch",
"start": "npm-run-all --serial build server"
},
"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/checkin-app/issues"
},
"homepage": "https://github.com/un-loop/checkin-app#readme",
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.5.5",
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"aws-sdk": "^2.499.0",
"axios": "^0.18.1",
"babel-loader": "^8.0.5",
"bcrypt": "^3.0.5",
"classnames": "^2.2.6",
"clsx": "^1.0.4",
"cookies": "^0.7.3",
"cross-env": "^5.2.0",
"file-loader": "^3.0.1",
"hoist-non-react-statics": "^3.3.0",
"koa": "^2.7.0",
"koa-auth-wrapper": "^2.2.1",
"koa-bodyparser": "^4.2.1",
"koa-compose": "^4.1.0",
"koa-decode-params": "^1.0.0",
"koa-middleware-wrapper": "^1.0.0",
"koa-mount": "^4.0.0",
"koa-passport": "^4.1.1",
"koa-route": "^3.2.0",
"koa-session": "^5.10.1",
"koa-status-router": "^1.0.3",
"koa-user-context": "^1.0.0",
"node-time-ago": "^1.0.0",
"npm-run-all": "^4.1.5",
"passport-local": "^1.0.0",
"querystring": "^0.2.0",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-material-ui-form-validator": "^2.0.8",
"react-text-mask": "^5.4.3",
"typeface-roboto": "0.0.54",
"unloop-auth-session": "^1.1.0",
"unloop-crypt": "^1.0.0",
"unloop-database-dynamo": "^1.3.1",
"unloop-koa-query": "^1.2.1",
"unloop-resource-builder": "^2.0.1",
"unloop-static-router": "^3.0.1",
"webpack": "^4.37.0",
"webpack-cli": "^3.3.6"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-google": "^0.13.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-require-jsdoc-except": "^1.3.0",
"nodemon": "^1.19.1",
"prettier": "^1.18.2"
}
}