-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 919 Bytes
/
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
{
"name": "lama",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"setup": "tsc && node ./build/src/setup.js",
"test": "clear && echo \"Running tests...\" && jest",
"start": "tsc && node --inspect ./build/src/index.js",
"dev": " ts-node-dev ./src/index.ts"
},
"author": "Nicole Zolnier",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"jest": "^26.0.1",
"knex": "^0.21.2",
"mysql": "^2.18.1",
"uuid": "^8.2.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.7",
"@types/jest": "^25.2.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/knex": "^0.16.1",
"@types/uuid": "^8.0.0",
"ts-jest": "^26.1.0",
"ts-node-dev": "^1.1.1",
"typescript": "^3.9.9"
}
}