-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 938 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 938 Bytes
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
{
"name": "body_parts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx nodemon build/server",
"sass": "sass --watch src/public/css:build/public/css",
"copyToSrc": "cp -r build/public/views src/public",
"copyFromSrc": "cp -r src/public/views build/public"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"knex": "^0.21.12"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/node": "^14.14.10",
"bcrypt": "^5.0.1",
"connect-sqlite3": "^0.9.11",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"multer": "^1.4.2",
"nodemailer": "^6.4.17",
"nodemon": "^2.0.6",
"read-excel-file": "^4.1.0",
"sqlite3": "^5.0.0"
}
}