-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.76 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.76 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "game",
"version": "1.0.0",
"description": "https://miro.com/welcomeonboard/ckxMV3hJWk02OHdtWnVQZW81eUE2bGxLbDBZSUxFeVdUdDM3OFZqdlR5eTEyajA5MzdqbkY4UHBXYm9UbjFseHwzMDc0NDU3MzQ5MDY1MjA0NDM0",
"scripts": {
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist",
"build": "npm run clean && cross-env NODE_ENV=production webpack",
"start:build": "cross-env NODE_ENV=production nodemon index.js",
"start:webpack": "webpack",
"start:server": "nodemon index.js --watch dist/server.js",
"start": "cross-env NODE_ENV=development npm-run-all --print-label --parallel start:webpack start:server",
"sync": "npm prune && npm install",
"lint": "lint-staged",
"lint:fix": "eslint --quiet --fix --ext ts,tsx -- './'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/providenceYP/game.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/providenceYP/game/issues"
},
"homepage": "https://github.com/providenceYP/game#readme",
"dependencies": {
"@hot-loader/react-dom": "17.0.1",
"@reduxjs/toolkit": "1.6.1",
"axios": "0.21.1",
"classnames": "2.3.1",
"express": "4.17.1",
"htmlescape": "1.1.1",
"dotenv": "10.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "7.2.5",
"react-router-dom": "5.2.0",
"serialize-javascript": "6.0.0",
"type-fest": "2.3.2",
"webpack-hot-middleware": "2.25.1"
},
"devDependencies": {
"@babel/core": "7.3.4",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-typescript": "7.14.6",
"@babel/preset-env": "7.15.8",
"@babel/preset-react": "7.14.5",
"@babel/preset-typescript": "7.15.0",
"@babel/register": "7.4.0",
"@types/dotenv-webpack": "7.0.3",
"@types/express": "4.17.13",
"@types/htmlescape": "1.1.1",
"@types/react": "17.0.16",
"@types/react-dom": "17.0.9",
"@types/react-redux": "7.1.18",
"@types/react-router-dom": "5.1.8",
"@types/serialize-javascript": "5.0.1",
"@types/webpack-dev-middleware": "5.0.2",
"@types/webpack-hot-middleware": "2.25.5",
"@types/webpack-node-externals": "2.5.3",
"@types/workbox-webpack-plugin": "5.1.8",
"@typescript-eslint/eslint-plugin": "4.29.0",
"@typescript-eslint/parser": "4.29.0",
"autoprefixer": "10.3.1",
"babel-loader": "8.2.2",
"cross-env": "7.0.3",
"css-hot-loader": "1.4.4",
"css-loader": "6.2.0",
"dotenv-webpack": "7.0.3",
"eslint": "7.32.0",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.0.8",
"file-loader": "6.2.0",
"html-loader": "2.1.2",
"html-webpack-plugin": "5.3.2",
"http-server": "13.0.1",
"husky": "7.0.1",
"jsonlint": "1.6.3",
"lint-staged": "11.1.1",
"nodemon": "2.0.13",
"npm-run-all": "4.1.5",
"nrun": "1.0.0",
"null-loader": "4.0.1",
"postcss": "8.3.6",
"postcss-import": "14.0.2",
"postcss-loader": "6.1.1",
"prettier": "2.3.2",
"react-hot-loader": "4.13.0",
"style-loader": "3.2.1",
"tailwindcss": "2.2.7",
"ts-loader": "9.2.6",
"tsconfig-paths-webpack-plugin": "3.5.1",
"tslib": "2.3.1",
"typescript": "4.4.3",
"webpack": "5.58.1",
"webpack-cli": "4.9.0",
"webpack-dev-middleware": "4.3.0",
"webpack-dev-server": "4.0.0",
"webpack-node-externals": "3.0.0",
"workbox-webpack-plugin": "6.2.4"
},
"lint-staged": {
"*.json": "jsonlint",
"*.{ts,tsx}": "eslint --quiet"
}
}