forked from ChidimmaOfodum/deskeando
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.58 KB
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
74
75
76
77
78
79
80
81
{
"name": "deskeando",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prebuild": "npm run cleanup",
"build": "npm run build:server && npm run build:client",
"postbuild": "buildinfo --output dist/static/build-info.txt",
"build:client": "webpack --config client/webpack/prod.config.cjs",
"build:server": "babel server --copy-files --out-dir dist",
"postbuild:server": "del-cli ./dist/**/README.md",
"cleanup": "del-cli ./dist/*",
"dev": "concurrently --kill-others \"npm:dev:*\"",
"dev:client": "webpack serve --config client/webpack/dev.config.cjs",
"dev:server": "cross-env LOG_LEVEL=debug PORT=3100 nodemon --inspect server/server.js",
"lint": "npm run lint:eslint && npm run lint:prettier -- --check",
"preserve": "npm run build",
"serve": "npm start",
"start": "node dist/server.js",
"lint:eslint": "eslint .",
"lint:fix": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write",
"lint:prettier": "prettier ."
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.5",
"@babel/eslint-parser": "^7.23.3",
"@babel/node": "^7.22.19",
"@babel/plugin-transform-class-properties": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.4",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.3",
"@textbook/build-info": "^0.6.0",
"babel-loader": "^9.1.3",
"bootstrap": "^5.3.2",
"bootstrap-icons": "^1.11.3",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"del-cli": "^5.1.0",
"eslint": "^8.55.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"history": "^5.3.0",
"html-webpack-plugin": "^5.5.3",
"html-webpack-tags-plugin": "^3.0.2",
"jest-environment-jsdom": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.20.1",
"style-loader": "^3.3.3",
"wait-on": "^7.2.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@babel/runtime": "^7.23.5",
"bcrypt": "^5.1.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"pg": "^8.11.3",
"winston": "^3.11.0"
},
"engines": {
"node": "^18.3 || ^20",
"npm": ">=8"
}
}