-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.7 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "book-my-bite",
"version": "1.0.0",
"description": "Restaurant's table reservation system.",
"main": "dist/server.js",
"type": "module",
"scripts": {
"copy-assets": "mkdirp dist/public && mkdirp dist/public/assets && ncp src/public/assets dist/public/assets",
"clean": "rimraf dist",
"build-webapp-dev": "npm run copy-assets && cross-env NODE_ENV=development webpack --mode=development",
"build-webapp": "npm run copy-assets && cross-env NODE_ENV=production webpack --mode=production",
"build": "tsc && npm run build-webapp",
"prestart-dev": "npm run clean && npm run build-webapp-dev && tsc",
"start-dev": "cross-env NODE_ENV=development concurrently \"tsc --watch\" \"nodemon --inspect=5858 dist/server.js\"",
"prestart-dev-full": "npm run clean && tsc && npm run copy-assets",
"start-dev-full": "cross-env NODE_ENV=development concurrently \"tsc --watch\" \"webpack --watch --mode development\" \"nodemon --inspect=5858 dist/server.js\"",
"just-start-dev": "cross-env NODE_ENV=development node dist/server.js",
"start": "cross-env NODE_ENV=production node dist/server.js",
"analyze-webpack-bundles": "webpack --profile --json > stats.json && webpack-bundle-analyzer stats.json",
"start-auto-build": "tsc --watch"
},
"license": "ISC",
"dependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@fastify/cookie": "^9.0.4",
"@fastify/formbody": "^7.4.0",
"@fastify/multipart": "^7.7.3",
"@fastify/static": "^6.11.0",
"@prisma/client": "^5.8.0",
"@types/node": "^15.6.1",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"bcrypt": "^5.1.1",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"fastify": "^4.22.2",
"html-webpack-plugin": "^5.5.0",
"luxon": "^3.4.4",
"mkdirp": "^3.0.1",
"ncp": "^2.0.0",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"postcss-loader": "^7.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.0",
"react-spinners": "^0.13.8",
"rimraf": "^5.0.1",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.3.1",
"typescript": "^5.2.2",
"url-loader": "^4.1.1",
"webpack": "^5.73.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/luxon": "^3.4.0",
"@types/mysql": "^2.15.21",
"@types/nodemailer": "^6.4.10",
"@types/react": "^18.0.15",
"@types/react-beautiful-dnd": "^13.1.7",
"@types/react-dom": "^18.0.6",
"concurrently": "^6.2.0",
"nodemon": "^3.0.1",
"prisma": "^5.8.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^4.10.0"
}
}