-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 997 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 997 Bytes
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": "exchange",
"version": "1.0.0",
"description": "Reveal messages simultaneously",
"main": "index.js",
"scripts": {
"test": "test",
"lint": "eslint --ext .js ./",
"lint-fix": "prettier --write ./ && eslint --fix --ext .js ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nampas/exchange.git"
},
"author": "Nathan Pastor",
"license": "ISC",
"bugs": {
"url": "https://github.com/nampas/exchange/issues"
},
"homepage": "https://github.com/nampas/exchange#readme",
"dependencies": {
"aws-sdk": "^2.734.0",
"body-parser": "^1.19.0",
"camelize": "^1.0.0",
"cookie-parser": "^1.4.5",
"ejs": "^3.1.3",
"express": "^4.17.1",
"node-pg-migrate": "^5.6.0",
"pg": "^8.3.2",
"randomstring": "^1.1.5",
"uuid": "^8.3.0"
},
"devDependencies": {
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "2.0.5",
"prettier-eslint": "^11.0.0"
}
}