-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.04 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
{
"name": "boomtown-server",
"version": "1.0.0",
"description": "Server-side code for RED Academy's Boomtown project.",
"main": "main.js",
"scripts": {
"jest": "jest --verbose",
"jest:watch": "npm run jest -- --watch",
"test": "npm run jest",
"start": "NODE_ENV=production node main.js",
"start:dev": "NODE_ENV=development nodemon main.js "
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"apollo-server": "^2.6.2",
"apollo-server-express": "^2.6.2",
"bcryptjs": "^2.4.3",
"chalk": "^2.4.2",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-history-api-fallback": "^2.2.1",
"graphql": "^14.3.1",
"graphql-playground-middleware-express": "^1.7.12",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"pg": "^7.11.0",
"stringstream": "^1.0.0"
},
"devDependencies": {
"jest-cli": "^24.8.0",
"nodemon": "^1.19.1"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/resolvers"
]
}
}