-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.44 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "credit-site",
"version": "0.1.2",
"description": "description",
"author": "niten2",
"license": "MIT",
"engines": {
"node": "10.0.0"
},
"scripts": {
"start": "NODE_PATH=dist/ node dist/index.js",
"build": "npm run build-ts && npm run lint",
"dev": "npm run build && npm run watch-debug",
"serve": "NODE_PATH=dist/ nodemon dist/index.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve\"",
"tests": "jest --forceExit --runInBand --config=.jest.js && npm run build-ts",
"test": "jest --watch --runInBand --config=.jest.js",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"lint": "tsc",
"serve-debug": "NODE_PATH=dist/ nodemon --inspect dist/index.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"db:seed": "NODE_PATH=dist/ node ./dist/db/seed.js",
"db:drop": "NODE_PATH=dist/ node ./dist/db/drop.js"
},
"dependencies": {
"@types/bcrypt-nodejs": "0.0.30",
"apollo-fetch": "^0.7.0",
"apollo-server-express": "^1.3.2",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.2",
"casl": "^1.0.6",
"compression": "^1.7.1",
"cors": "^2.8.4",
"dotenv": "^5.0.0",
"express": "^4.16.2",
"factory-girl": "^5.0.2",
"faker": "^4.1.0",
"graphql": "^0.12.3",
"graphql-tools": "^2.19.0",
"intel": "^1.2.0",
"jsonwebtoken": "^8.1.1",
"mongodb": "^3.0.2",
"mongoose": "^5.0.3",
"morgan-body": "^2.0.2"
},
"devDependencies": {
"@types/async": "^2.0.49",
"@types/bcrypt": "^1.0.0",
"@types/body-parser": "^1.17.0",
"@types/compression": "0.0.35",
"@types/cors": "^2.8.4",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.11.1",
"@types/faker": "^4.1.2",
"@types/graphql": "^0.12.7",
"@types/jest": "^22.2.3",
"@types/jsonwebtoken": "^7.2.7",
"@types/mongodb": "^3.0.18",
"@types/mongoose": "^5.0.15",
"@types/morgan": "^1.7.35",
"@types/node": "^9.6.18",
"@types/passport": "^0.4.5",
"@types/supertest": "^2.0.4",
"concurrently": "^3.5.1",
"esnext": "^3.3.1",
"jest": "^22.4.4",
"node-sass": "^4.9.0",
"nodemon": "^1.17.5",
"supertest": "^3.1.0",
"ts-jest": "^22.4.6",
"ts-loader": "^3.5.0",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
}
}