-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.27 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
43
{
"name": "rememory-backend",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"repository": "ssh://[email protected]:yuchem2/rememoy-backend.git",
"author": "yuhem2 <[email protected]>",
"scripts": {
"prepare": "husky install",
"start": "yarn build && cross-env NODE_ENV=production node dist/app.js",
"dev": "cross-env NODE_ENV=development nodemon",
"build": "rmdir /s /q dist && swc src -d dist --source-maps --copy-files",
"lint": "eslint --ignore-path .gitignore --ext .ts src/"
},
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"helmet": "^7.1.0",
"hpp": "^0.2.3"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.96",
"@swc/helpers": "^0.5.3",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/hpp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.10",
"nodemon": "^3.0.3",
"prettier": "^3.2.5",
"swc-node": "^1.0.0",
"typescript": "^5.3.3"
}
}