-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.71 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
61
62
63
64
{
"name": "excel-clone",
"version": "1.0.0",
"main": "app.js",
"repository": "https://github.com/naman114/MS-Excel-Clone.git",
"author": "Naman Gogia <namangogia2001@gmail.com>",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.1",
"client-sessions": "^0.8.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"ejs": "^3.1.7",
"express": "^4.17.2",
"global": "^4.4.0",
"helmet": "^5.0.1",
"joi": "^17.5.0",
"module-alias": "^2.2.2",
"mongoose": "^6.1.4",
"node": "^17.3.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.4.0",
"tsc": "^2.0.3",
"typescript": "^4.5.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/client-sessions": "^0.8.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/mongoose": "^5.11.97",
"@types/node": "^17.0.7",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.5",
"nodemon": "^2.0.15",
"prettier": "^2.5.1"
},
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix",
"*.{ts,js,css,md}": "prettier --write",
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"_moduleAliases": {
"~": "dist/"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"scripts": {
"prepare": "husky install",
"start": "node dist",
"build": "yarn tsc",
"dev": "nodemon dist",
"ts-node": "ts-node --compiler-options {\\\"module\\\":\\\"commonjs\\\"}",
"migrate": "prisma migrate dev",
"seed": "prisma db seed --preview-feature",
"postinstall": "npm run build"
}
}