This repository has been archived by the owner on Jan 27, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 2.59 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
{
"name": "pia",
"version": "0.4.7",
"description": "PIA, (Electronic) Parts Inventory Assistant",
"main": "src/server/index.js",
"homepage": "https://pia-evo.vercel.app",
"scripts": {
"build": "rm -rf dist && webpack --config config/webpack.config.js --env production",
"build:server": "webpack --config config/webpack.config.js --config-name server --env production",
"start": "concurrently 'yarn start:server' 'yarn start:client' 'nodemon dist/server.js'",
"start:client": "webpack serve --config config/webpack.config.js --config-name client --env development --hot",
"start:server": "webpack --config config/webpack.config.js --config-name server --env development --watch",
"release": "rm -rf dist && rm -rf api/* && yarn build:server && cp dist/server.js api/server.js",
"now-build": "yarn build"
},
"author": "Thomas Meschke",
"license": "MIT",
"dependencies": {
"@csstools/normalize.css": "^12.0.0",
"babel-polyfill": "^6.26.0",
"cuid": "^2.1.8",
"date-and-time": "^2.0.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"gitrows": "^0.8.0",
"match-sorter": "^6.3.1",
"memorystore": "^1.6.7",
"node-sass": "^4.13.0",
"passport": "^0.5.0",
"passport-github2": "^0.1.12",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"react-splitter-layout": "^4.0.0",
"react-table": "^7.0.0",
"uikit": "3.6.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.16.0",
"@svgr/webpack": "^5.5.0",
"babel-eslint": "^10.0.0",
"babel-loader": "^8.2.3",
"concurrently": "^6.4.0",
"css-loader": "^5.2.7",
"dotenv": "^10.0.0",
"dotenv-flow": "^3.2.0",
"dotenv-flow-webpack": "^1.1.0",
"eslint": "^5.0.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^3.0.0",
"html-webpack-plugin": "^4.5.2",
"mini-css-extract-plugin": "0.9.0",
"nodemon": "^2.0.15",
"sass-loader": "^8.0.0",
"style-loader": "^0.23.0",
"url-loader": "^4.1.1",
"webpack": "4.46.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0"
},
"proxy": "http://localhost:5000/"
}