-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "todo",
"version": "1.0.0",
"description": "todo backend using typeorm and travis for ci/cd",
"main": "index.js",
"scripts": {
"start": "nodemon -w src --ext ts --exec ts-node src/index.ts",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"test": "jest --clearCache && jest --watch"
},
"keywords": [
"TypeORM",
"Travis",
"NodeJS"
],
"author": "Smith Samuel",
"license": "ISC",
"dependencies": {
"apollo-server-express": "^2.12.0",
"express": "^4.17.1",
"reflect-metadata": "^0.1.13",
"sqlite3": "^4.1.1",
"type-graphql": "^0.17.6",
"typedi": "^0.8.0",
"typeorm": "^0.2.24",
"typeorm-typedi-extensions": "^0.2.3"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"@types/sqlite3": "^3.1.6",
"jest": "^25.3.0",
"nodemon": "^2.0.3",
"supertest": "^4.0.2",
"ts-jest": "^25.3.1",
"ts-node": "^8.8.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.8.3"
}
}