-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.72 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.72 KB
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
{
"name": "my-app",
"version": "1.0.0",
"description": "my app",
"main": "dist/app/server.js",
"scripts": {
"build": "NODE_ENV=local rm -rf ./dist && ./node_modules/.bin/tsc",
"lint": "./node_modules/.bin/tslint -c tslint.json 'src/**/*.ts'",
"dev": "NODE_ENV=local tsc-watch --onSuccess \"node ./dist/app/server.js\"",
"add-migration": "npm run build && NODE_ENV=local node ./node_modules/typeorm/cli --f ./dist/app/config/rdbms.js migration:generate -n",
"migrate": "npm run build && NODE_ENV=local node ./node_modules/typeorm/cli --f ./dist/app/config/rdbms.js migration:run -t=each",
"test": "tsc && NODE_ENV=test nyc --reporter=html --reporter=lcov mocha --timeout 20000 dist/test/ --recursive --exit",
"debug": "node --nolazy --nolazy --inspect-brk=9229 dist/app/server.js",
"db:create": "ts-node ./node_modules/typeorm-extension/dist/cli/index.js db:create",
"db:drop": "ts-node ./node_modules/typeorm-extension/dist/cli/index.js db:drop"
},
"dependencies": {
"@types/swagger-jsdoc": "^3.0.2",
"bcrpyt": "^2.0.0",
"bcrypt": "^5.0.1",
"class-transformer": "^0.2.3",
"class-validator": "^0.9.1",
"compression": "^1.7.3",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"envalid": "^4.2.2",
"express": "^4.16.4",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.15",
"migrate": "^1.8.0",
"moment": "^2.24.0",
"multer": "^1.4.4",
"otplib": "^11.0.1",
"pg": "^8.7.3",
"ts-node": "^8.4.1",
"typeorm": "^0.2.13",
"typeorm-extension": "^1.0.0",
"typeorm-naming-strategies": "^1.0.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"@fluffy-spoon/substitute": "^1.113.0",
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/bcrypt": "^3.0.0",
"@types/chai": "^4.2.2",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.1",
"@types/cors": "^2.8.4",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.1",
"@types/jsonwebtoken": "^8.3.0",
"@types/mocha": "^7.0.2",
"@types/multer": "^1.3.10",
"@types/multer-s3": "^2.7.7",
"@types/node": "^14.18.10",
"@types/request-promise": "^4.1.42",
"@types/sharp": "^0.23.0",
"@types/superagent": "4.1.10",
"@types/supertest": "^2.0.11",
"@types/ua-parser-js": "^0.7.32",
"@types/uuid": "^3.4.4",
"chai": "^4.2.0",
"mocha": "^7.1.0",
"nyc": "^14.1.1",
"sinon": "^7.5.0",
"supertest": "^3.4.2",
"tsc-watch": "^1.1.39",
"tslint": "^5.12.1",
"typescript": "^4.1.3"
},
"author": "Keyvalue",
"license": "ISC",
"bugs": {
"url": "https://bitbucket.org/keyvaluesoftwaresystems/surgeapp"
},
"homepage": "https://bitbucket.org/keyvaluesoftwaresystems/surgeapp"
}