-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.12 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
{
"name": "realtime-pizza",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "nodemon server.js",
"serve": "node server.js",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"license": "MIT",
"dependencies": {
"axios": "^0.21.0",
"connect-mongo": "^3.2.0",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.0",
"express-flash": "^0.0.2",
"express-session": "^1.17.1",
"mongoose": "^5.10.11",
"noty": "^3.2.0-beta",
"tailwindcss": "^1.9.6"
},
"devDependencies": {
"laravel-mix": "^5.0.5",
"nodemon": "^2.0.4",
"resolve-url-loader": "^3.1.0",
"sass": "^1.26.11",
"sass-loader": "^8.0.2",
"vue-template-compiler": "^2.6.12"
}
}