-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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": "custom-shirts",
"version": "0.0.0",
"description": "API for making custom shirts with the printful API",
"main": "index.js",
"scripts": {
"test": "jest --no-cache --forceExit --detectOpenHandles",
"start": "node app.js",
"debug": "NODE_ENV=development node --inspect=0.0.0.0:9229 app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryancwynar/custom-shirts.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ryancwynar/custom-shirts/issues"
},
"homepage": "https://github.com/ryancwynar/custom-shirts#readme",
"dependencies": {
"apollo-server-express": "^2.9.15",
"axios": "^0.19.1",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"lodash": "^4.17.14",
"mongoose": "^5.8.4",
"node-cron": "^1.2.1",
"validator": "^10.9.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"babel-jest": "^23.6.0",
"dotenv": "^6.1.0",
"jest": "^23.6.0",
"node-mocks-http": "^1.7.3",
"supertest": "^3.3.0"
}
}