-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "kukka-clicker-server",
"version": "1.0.0",
"description": "Kukka clicker",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"dev": "NODE_ENV=development nodemon",
"start": "ts-node src/index.ts",
"test": "NODE_ENV=test jest"
},
"author": "Oliver Mulari",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.6.1",
"sequelize": "^6.7.0",
"socket.io": "^4.0.0",
"sqlite3": "^4.2.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.11",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^27.3.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-jest": "^27.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}