-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.01 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
{
"name": "eating-grail",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --config ./client/webpack.config.ts --mode production",
"start-client": "webpack serve --hot --config ./client/webpack.config.ts --mode development --port 4000",
"start": "ts-node ./server/index.ts",
"update": "git pull && yarn build",
"install-all": "yarn && cd ./client && yarn && cd ../server && yarn && cd .."
},
"repository": {
"type": "git",
"url": "git+https://github.com/limcong/eating-grail.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/limcong/eating-grail/issues"
},
"homepage": "https://github.com/limcong/eating-grail#readme",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"@types/node": "^18.0.0",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"babel-plugin-import": "^1.13.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^7.0.0",
"core-js": "^3.8.1",
"css-loader": "^5.0.1",
"eslint": "^8.22.0",
"eslint-config-alloy": "^4.6.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tsdoc": "^0.2.16",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.0",
"prettier": "^2.7.1",
"style-loader": "^2.0.0",
"ts-loader": "^9.3.0",
"ts-node": "^10.8.1",
"typescript": "^4.6.4",
"webpack": "^5.72.0",
"webpack-bundle-analyzer": "^4.2.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.10.0"
},
"dependencies": {
"@types/webpack-dev-server": "^4.7.2",
"eslint-plugin-jsx-a11y": "^6.6.1"
}
}