-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 853 Bytes
/
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
{
"name": "carrefour",
"version": "1.0.0",
"description": "",
"main": "./src/server.ts",
"scripts": {
"dev": "concurrently \"npm run watch-compile\" \"npm run watch-dev\"",
"watch-compile": "swc src -w --out-dir dist",
"watch-dev": "nodemon --watch \"dist/**/*\" -e js ./dist/src/server.js",
"build": "swc src -d dist",
"start": "NODE_ENV=production node dist/src/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@swc/cli": "^0.3.10",
"@swc/core": "^1.4.8",
"@types/lodash": "^4.17.0",
"@types/node": "^20.11.30",
"chokidar": "^3.6.0",
"concurrently": "^8.2.2",
"nodemon": "^3.1.0",
"typescript": "^5.4.3"
},
"dependencies": {
"axios": "^1.6.8",
"cheerio": "^1.0.0-rc.12",
"lodash": "^4.17.21",
"node-json-db": "^2.3.0"
}
}