-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.62 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
{
"name": "neos-majiang-v3",
"version": "3.0.0",
"description": "",
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"scripts": {
"test": "mocha -u tdd",
"test:cover": "nyc -r lcov -r text npm test",
"remove": "node -e 'fs.rmSync(`build`, {recursive:true, force:true})'",
"build": "rimraf build && npx tsc",
"dev": "npm run build && node build/main.js",
"dev:single": "npx ts-node src/dev/single/server.ts",
"dev:single:build": "npx webpack --config src/dev/single/webpack.config.dev.single.js",
"dev:single:build:watch": "npx webpack --watch --config src/dev/single/webpack.config.dev.single.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NeosSharedProject/neos-majiang-v3"
},
"keywords": [
"麻雀",
"電脳麻将"
],
"author": "Satoshi Kobayashi",
"license": "MIT",
"bugs": {
"url": "https://github.com/kobalab/majiang-core/issues"
},
"homepage": "https://github.com/kobalab/majiang-core#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.184",
"@types/react-dom": "^18.0.6",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.3",
"html-webpack-plugin": "^5.5.0",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"express": "^4.18.1",
"json2emap": "^0.2.0",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uuid": "^8.3.2",
"ws": "^8.8.1"
}
}