-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.57 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
54
55
56
57
58
59
60
{
"name": "typescript",
"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": "Anokhin",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"eslint": "^8.34.0",
"husky": "^8.0.3",
"markdown-notes-tree": "^1.12.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"bcrypt": "^5.1.0",
"chart.js": "^4.3.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^6.15.0",
"faker": "^6.6.6",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.10.0",
"multer": "^1.4.5-lts.1",
"react-chartjs-2": "^5.2.0"
}
}