-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 732 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 732 Bytes
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
{
"name": "fighting-game-strategy",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "webpack",
"watch": "webpack -w",
"typecheck": "tsc -p . --noEmit",
"hot": "webpack-dev-server --hot --inline --watch-content-base --content-base public/ --open-page index.html "
},
"devDependencies": {
"@types/react": "^16.9.36",
"@types/react-dom": "^16.9.8",
"css-loader": "^3.6.0",
"papaparse": "^5.2.0",
"style-loader": "^1.2.1",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}