-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.45 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
{
"name": "toptal-project-time-mgmt",
"version": "1.0.0",
"description": "Sakib Sauro's Toptal Project -- Time Management App",
"main": "index.js",
"scripts": {
"lint": "node_modules/.bin/eslint . --ext .ts",
"tsc": "tsc",
"dev": "./node_modules/.bin/ts-node-dev --respawn --transpile-only server/index.ts",
"prod": "tsc && node ./build/index.js",
"loaddb": "DEBUG=knex:tx knex migrate:latest",
"unloaddb": "DEBUG=knex:tx knex migrate:rollback"
},
"repository": {
"type": "git",
"url": "git@git.toptal.com:screening/sakib-sauro.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.7",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.8",
"@types/jsonwebtoken": "^8.5.0",
"@types/knex": "^0.16.1",
"@types/mysql": "^2.15.15",
"accesscontrol": "^2.2.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.5",
"mysql": "^2.18.1",
"typescript": "^4.0.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ts-node-dev": "^1.0.0-pre.62"
}
}