-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
44
45
46
47
{
"name": "malmofoods",
"version": "2.0.0",
"description": "An app to find foods in Malmö. Hopefully.",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "concurrently -n tsserver,server,client \"npx tsc --watch\" \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "nodemon dist/index.js",
"dev:client": "cd client && npm run dev",
"build": "rm -rf dist/ && npx tsc && cp package.json package-lock.json dist/ && cd client && npm run build && cp -r dist ../dist/client",
"start": "cd dist && node index.js"
},
"author": "Peter Persson",
"license": "ISC",
"dependencies": {
"cheerio": "1.0.0-rc.12",
"compression": "1.7.4",
"cors": "2.8.5",
"express": "4.18.2",
"express-useragent": "1.0.15",
"he": "1.2.0",
"moment": "2.29.4",
"node-cache": "5.1.2",
"path": "0.12.7",
"puppeteer": "20.9.0"
},
"devDependencies": {
"@types/cheerio": "0.22.31",
"@types/compression": "1.7.2",
"@types/cors": "2.8.13",
"@types/express": "4.17.17",
"@types/express-useragent": "1.0.2",
"@types/he": "^1.2.0",
"@types/node": "20.4.5",
"concurrently": "8.2.0",
"dotenv": "16.3.1",
"eslint": "8.45.0",
"nodemon": "3.0.1",
"typescript": "5.1.6"
},
"nodemonConfig": {
"ignore": [
"files/*"
]
}
}