forked from hreinberger/mondu-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.29 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
48
49
50
51
{
"name": "mondu-node",
"version": "0.1.0",
"private": true,
"license": "MIT",
"author": {
"name": "Hannes Reinberger"
},
"contributors": [
"ChatGPT",
"Jakub Rojek"
],
"repository": {
"type": "git",
"url": "https://github.com/hreinberger/mondu-node"
},
"scripts": {
"dev": "nodemon ./bin/www",
"start": "node ./bin/www",
"build:css": "sass scss/style.scss public/stylesheets/style.css",
"prod": "NODE_ENV=production sass scss/style.scss public/stylesheets/style.css & node ./bin/www",
"test": "npm run build:css && npm run start & wait-on http://localhost:3000 & cypress run"
},
"dependencies": {
"axios": "1.x",
"bootstrap": "^5.3.x",
"cookie-parser": "1.x",
"debug": "4.x",
"dotenv": "16.x",
"express": "4.x",
"form-data": "^4.0.0",
"http-errors": "2.x",
"morgan": "1.x",
"multer": "^1.4.5-lts.1",
"node-fetch": "3.x",
"nodemon": "3.x",
"pug": "3.0.x",
"sass": "^1.77.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"cypress": "13.x",
"cypress-iframe": "^1.0.1",
"eslint": "9.x",
"eslint-config-prettier": "9.x",
"localtunnel": "^2.0.2",
"prettier": "3.x",
"public-ip": "^6.0.2",
"wait-on": "^7.2.0"
}
}