-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.53 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
{
"name": "ohgnarly",
"version": "1.0.0",
"description": "ohgnarly.com",
"main": "./bin/www",
"scripts": {
"start": "node dist/app.js --trace-warnings",
"test": "npm-run-all -c test-create test-start test-run test-stop test-rm",
"postinstall": "npm run build-ts",
"build-ts": "tsc",
"print-version": "node -v",
"test-start": "docker-compose start",
"test-create": "docker-compose up --no-start",
"test-run": "jest --coverage",
"test-stop": "docker-compose stop",
"test-rm": "docker-compose rm -f"
},
"repository": {
"type": "git",
"url": "https://git.heroku.com/ohgnarly.git"
},
"author": "Aaron Smith",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": ">=1.19.0",
"cookie-parser": ">=1.4.4",
"cors": "^2.8.5",
"debug": ">=4.1.1",
"dotenv": "^8.2.0",
"express": ">=4.17.1",
"imdb-api": "^4.4.1",
"mongoose": "^5.12.2",
"morgan": ">=1.9.1",
"serve-favicon": "^2.5.0",
"socket.io": "^4.0.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/debug": "^4.1.5",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.21",
"@types/mongoose": "^5.10.3",
"@types/morgan": "^1.9.2",
"@types/node": "^11.9.4",
"@types/socket.io": "^2.1.13",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
}
}