-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 921 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
33
34
35
36
37
38
39
40
{
"name": "logistik-app",
"version": "1.0.0",
"main": "index.js",
"author": "AxelRHD <[email protected]>",
"license": "MIT",
"scripts": {
"start": "parcel index.html",
"build": "parcel build index.html",
"watch": "parcel watch index.html",
"serve": "nodemon main.js",
"dev": "concurrently \"yarn watch\" \"yarn serve\""
},
"nodemonConfig": {
"ignore": [
"db.json",
"index.html",
"src/*"
]
},
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"lowdb": "^1.0.0",
"mithril": "^2.0.4",
"moment": "^2.29.1",
"normalize.css": "^8.0.1",
"tachyons": "^4.12.0",
"voca": "^1.4.0"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.6",
"parcel-bundler": "^1.12.4"
}
}