-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.21 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
{
"name": "typescript",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev:server": "tsnd --transpile-only --ignore-watch node_modules --respawn src/web/server.ts",
"typeorm": "tsnd ./node_modules/typeorm/cli.js",
"seed:config": "ts-node ./node_modules/typeorm-seeding/dist/cli.js config",
"seed:run": "ts-node ./node_modules/typeorm-seeding/dist/cli.js seed"
},
"dependencies": {
"ip": "^1.1.5",
"axios": "^0.19.2",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.3.0",
"sqlite3": "^5.0.0",
"tsyringe": "^4.3.0",
"typeorm": "^0.2.25",
"typeorm-seeding": "^1.6.1"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@types/ip": "^1.1.0",
"@types/jsonwebtoken": "^8.5.0",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.2.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"ip": "^1.1.5",
"prettier": "^2.0.5",
"ts-node-dev": "^1.0.0-pre.56",
"typescript": "^3.9.7"
}
}