This repository has been archived by the owner on Nov 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.67 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
{
"name": "naturalcycles",
"version": "1.0.0",
"description": "Natural Cycles Challenge",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/jest",
"start-dev": "npm install && npm run migration:run && nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"start-test": "sleep 10 && npm run migration:run && ts-node src/index.ts",
"start": "node ./node_modules/typeorm/cli.js migration:run && node ./build/index.js",
"migration:run": "npx ts-node ./node_modules/typeorm/cli.js migration:run",
"migration:revert": "npx ts-node ./node_modules/typeorm/cli.js migration:revert"
},
"author": "Mariano Benedettini",
"license": "ISC",
"devDependencies": {
"@types/cookie-parser": "^1.4.1",
"@types/errorhandler": "0.0.32",
"@types/http-errors": "^1.6.1",
"@types/jest": "^23.3.5",
"@types/morgan": "^1.7.35",
"@types/node": "^10.11.4",
"errorhandler": "^1.5.0",
"husky": "^1.1.1",
"jest": "^23.6.0",
"jest-junit": "^5.2.0",
"nodemon": "^1.18.4",
"prettier": "1.14.3",
"pretty-quick": "^1.7.0",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"ts-jest": "^23.10.4",
"ts-node": "^7.0.1",
"typescript": "^3.1.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"cli-color": "^1.3.0",
"cookie-parser": "~1.4.3",
"cors": "^2.8.4",
"coveralls": "^3.0.2",
"debug": "~2.6.9",
"express": "~4.16.0",
"http-errors": "~1.6.2",
"morgan": "~1.9.0",
"pg": "^7.5.0",
"pug": "^2.0.3",
"reflect-metadata": "^0.1.12",
"tracer": "^0.9.1",
"typeorm": "^0.2.7",
"uuid": "^3.3.2"
}
}