forked from zuhairtaha/tasks-mysql-nodejs-app
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "tasks-express",
"version": "0.0.1",
"private": true,
"description": "Demo for MySQL with Express",
"author": "Zuhair Taha",
"license": "MIT",
"scripts": {
"start": "node ./bin/www",
"watch": "nodemon ./bin/www",
"parcel:build": "parcel build public/app.js -d public/dist --no-cache",
"parcel:watch": "parcel watch public/app.js -d public/dist --no-cache",
"uglify": "uglifyjs --compress --mangle -c -- public/dist/app.js --source-map --output output.js"
},
"dependencies": {
"cookie-parser": "~1.4.3",
"datatables": "^1.10.18",
"debug": "~2.6.9",
"ejs": "~2.5.7",
"express": "~4.16.0",
"http-errors": "~1.6.2",
"jquery": "^3.5.1",
"materialize-css": "^1.0.0",
"morgan": "~1.9.0",
"mysql": "^2.18.1",
"sweetalert": "^2.1.0"
},
"engines": {
"node": "8.11.4",
"npm": "6.4.1"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"cssnano": "^4.1.4",
"dotenv": "^6.0.0",
"sass": "^1.26.10",
"uglify-js": "^3.10.3"
}
}