-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.35 KB
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
50
51
52
53
{
"name": "accountstorm",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"scripts": {
"nodemon": "npx nodemon",
"build": "rimraf ./build && npx tsc",
"start": "npm run build && node build/main",
"lint": "npx eslint ./src",
"format": "npx eslint ./src --fix",
"server": "npx nodemon",
"client": "npm run dev --prefix client",
"dev": "cross-env NODE_ENV=development concurrently \"npm run server\" \"npm run client\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"eslint": "^8.35.0",
"husky": "^8.0.3",
"nodemon": "^2.0.21",
"prettier": "^2.8.4",
"rimraf": "^4.4.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"docx": "^8.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^6.15.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.1"
}
}