-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 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
{
"name": "theworld-client-react",
"version": "1.0.0",
"description": "TheWorld client on react",
"main": "./dist/index.js",
"directories": {
"example": "example"
},
"scripts": {
"watch": "webpack --watch --mode development",
"build": "webpack --mode production",
"watch-browser": "webpack --config webpack.config.browser.js --watch --mode development",
"build-browser": "webpack --config webpack.config.browser.js --mode production",
"build-all": "npm run build && npm run build-browser"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lunuy/theworld-client-react.git"
},
"keywords": [
"TheWorld",
"client",
"React"
],
"author": "Lunuy",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lunuy/theworld-client-react/issues"
},
"homepage": "https://github.com/Lunuy/theworld-client-react#readme",
"devDependencies": {
"react": "^17.0.1",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0"
},
"peerDependencies": {
"react": ">= 16.8",
"theworld-client": ">= 1.0.0"
},
"dependencies": {
"@types/react": "^17.0.0",
"theworld-client": "^1.0.1",
"webpack-node-externals": "^2.5.2"
}
}