-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 3.21 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
77
78
79
80
81
82
83
84
85
86
{
"name": "webapi",
"private": true,
"version": "0.0.0",
"description": "The WebAPI project",
"repository": {
"type": "git",
"url": "https://github.com/blendsdk/webapi.git"
},
"author": "",
"license": "MIT",
"scripts": {
"seed_test": "node ./dist/src/tests/seed.js",
"mkclient": "node ./dist/src/client/index.js",
"mkdb": "rm -fR ./schema/dist && tsc -p ./schema && node ./schema/dist/mkdb.js && yarn tslint",
"mkapi": "rm -fR ./schema/dist && tsc -p ./schema && node ./schema/dist/mkapi.js && yarn tslint",
"start": "npm run serve",
"build": "npm run build-ts && npm run tslint",
"serve": "node dist/src/server.js",
"watch-node": "nodemon dist/src/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"test": "cross-env NODE_JEST=true && jest --detectOpenHandles --verbose --runInBand --forceExit",
"watch-test": "npm run test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -p tsconfig.json --fix",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/src/server.js",
"watch-debug": "yarn build && concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"dependencies": {
"@blendsdk/codekit": "^1.1.4",
"@blendsdk/express": "^1.1.7",
"@blendsdk/schemakit": "^1.1.4",
"@blendsdk/sqlkit": "^1.1.4",
"@blendsdk/stdlib": "^1.1.4",
"@types/bcryptjs": "^2.4.2",
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chalk": "^2.4.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"ejs": "^2.7.1",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-bearer-token": "^2.4.0",
"express-session": "^1.16.2",
"express-validator": "^6.2.0",
"jsonwebtoken": "^8.5.1",
"lusca": "^1.6.1",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/body-parser": "^1.17.1",
"@types/compression": "^1.0.1",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/errorhandler": "^0.0.32",
"@types/express": "^4.17.1",
"@types/express-session": "^1.15.14",
"@types/jest": "^24.0.18",
"@types/jsonwebtoken": "^8.3.3",
"@types/lusca": "^1.6.1",
"@types/morgan": "^1.7.37",
"@types/node": "^12.7.5",
"@types/pg": "^7.11.1",
"@types/request": "^2.48.3",
"@types/superagent": "^4.1.3",
"@types/supertest": "^2.0.8",
"@types/yesql": "^3.2.1",
"concurrently": "^4.1.2",
"jest": "^24.9.0",
"lerna": "^3.16.4",
"nodemon": "^1.19.2",
"superagent": "^5.1.0",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
}
}