-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1019 Bytes
/
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
{
"name": "rtd-app-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"serve": "babel-node src/index.js",
"start": "nodemon --exec babel-node src/index.js",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"apollo-datasource-rest": "^0.6.9",
"apollo-server-express": "^2.9.12",
"bcrypt": "^3.0.7",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"graphql-tools": "^4.0.6",
"gtfs-realtime-bindings": "0.0.5",
"nodemon": "^2.0.1",
"pg": "^7.14.0",
"sequelize": "^5.21.2",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/node": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"apollo-server-testing": "^2.9.12",
"axios": "^0.19.0",
"jest": "^24.9.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
]
}
}