-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.27 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
{
"name": "movies",
"version": "0.0.0",
"description": "description of the application",
"license": "MIT",
"repository": {},
"scripts": {
"build": "npx foal rmdir build && tsc -p tsconfig.app.json",
"start": "node ./build/index.js",
"develop": "npm run build && concurrently \"tsc -p tsconfig.app.json -w\" \"supervisor -w ./build,./config -e js,json,yml --no-restart-on error ./build/index.js\"",
"build:test": "npx foal rmdir build && tsc -p tsconfig.test.json",
"start:test": "mocha --file ./build/test.js \"./build/**/*.spec.js\"",
"test": "npm run build:test && concurrently \"tsc -p tsconfig.test.json -w\" \"mocha --file ./build/test.js -w \\\"./build/**/*.spec.js\\\"\"",
"build:e2e": "npx foal rmdir build && tsc -p tsconfig.e2e.json",
"start:e2e": "mocha --timeout 4000 --file ./build/e2e.js \"./build/e2e/**/*.js\"",
"e2e": "npm run build:e2e && concurrently \"tsc -p tsconfig.e2e.json -w\" \"mocha --file ./build/e2e.js -w \\\"./build/e2e/**/*.js\\\"\"",
"lint": "eslint --ext ts src",
"lint:fix": "eslint --ext ts --fix src",
"makemigrations": "npx foal rmdir build && tsc -p tsconfig.app.json && npx typeorm migration:generate --name migration && tsc -p tsconfig.app.json",
"migrations": "npx typeorm migration:run",
"revertmigration": "npx typeorm migration:revert"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@foal/core": "^2.0.0",
"@foal/typeorm": "^2.0.0",
"@prisma/client": "^2.25.0",
"apollo-server-express": "^2.25.1",
"better-sqlite3": "~7.1.2",
"class-validator": "^0.13.1",
"graphql": "^15.5.1",
"graphql-fields": "^2.0.3",
"graphql-scalars": "^1.10.0",
"node-fetch": "^2.6.1",
"reflect-metadata": "^0.1.13",
"source-map-support": "~0.5.19",
"type-graphql": "^1.1.1",
"typeorm": "0.2.26"
},
"devDependencies": {
"@foal/cli": "^2.5.0",
"@types/mocha": "7.0.2",
"@types/node": "10.17.24",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "~2.7.0",
"@typescript-eslint/parser": "~2.7.0",
"concurrently": "~5.3.0",
"eslint": "^6.7.0",
"mocha": "~8.2.0",
"prisma": "^2.25.0",
"supertest": "~6.0.0",
"supervisor": "~0.12.0",
"typegraphql-prisma": "^0.14.4",
"typescript": "~4.1.0"
}
}