-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.4 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
{
"name": "nerd_notes",
"version": "1.0.0",
"description": "",
"main": "server.ts",
"scripts": {
"build": "./node_modules/.bin/tsc && cp -r ./definitions ./dist",
"start": "node ./dist/server.js",
"typeorm:cli": "ts-node ./node_modules/typeorm/cli -f src/ormconfig.ts",
"db:migrate": "npm run typeorm:cli migration:run",
"db:sync": "npm run typeorm:cli schema:sync",
"start:docker": "npm run build && npm run db:sync && npm start",
"test": "npm run build && npm run test:feature",
"test:feature": "ENV=test ./node_modules/.bin/cucumber-js test/**/**/*.feature --require ./dist/test/**/*.steps.js --require ./dist/test/*.steps.js --require-module ts-node/register --exit"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@core/utils": "file:./utils",
"cors": "^2.8.5",
"express": "^4.17.1",
"pg": "^7.12.1",
"typeorm": "^0.2.19"
},
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/cors": "^2.8.6",
"@types/cucumber": "^4.0.7",
"@types/express": "^4.17.1",
"@types/node": "^12.7.5",
"@types/request-promise": "^4.1.44",
"@types/uuid": "^3.4.5",
"chai": "^4.2.0",
"cucumber": "^5.1.0",
"eslint": "^5.16.0",
"husky": "^3.0.5",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.6.3",
"uuid": "^3.3.3"
}
}