-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·38 lines (38 loc) · 1.01 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --ignore-watch node_modules src/server.ts",
"knex:seed": "knex --knexfile knexfile.ts seed:run",
"knex:migrate": "knex --knexfile knexfile.ts migrate:latest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"express": "^4.17.1",
"knex": "^0.21.18",
"pg": "^8.5.1",
"sqlite3": "^4.2.0"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.1.1",
"typescript": "^3.9.9",
"normalize-url": ">=4.5.1"
}
}