-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.79 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
64
65
66
67
{
"name": "machikoro",
"version": "0.7.1",
"private": true,
"dependencies": {
"boardgame.io": "",
"classnames": "",
"koa-static": "",
"lodash": "",
"react": "",
"react-dom": ""
},
"scripts": {
"build": "npm run transpile && npm run bundle",
"transpile": "tsc && tsc-alias",
"bundle": "webpack",
"serve": "node ./build/server/index.js",
"predev": "mkdir -p ./build/server && touch ./build/server/index.js",
"dev": "cross-env-shell NODE_ENV=development 'concurrently \"tsc -w --preserveWatchOutput\" \"tsc-alias -w\" \"webpack -w\" \"nodemon -w ./build -d 1 ./build/server/index.js\"'",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"version": "genversion --es6 --semi --check-only --verbose ./src/version.ts",
"version:fix": "genversion --es6 --semi --verbose ./src/version.ts"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@eslint/js": "",
"@tsconfig/recommended": "",
"@types/koa-static": "",
"@types/lodash": "",
"@types/node": "",
"@types/react": "",
"@types/react-dom": "",
"concurrently": "",
"copy-webpack-plugin": "",
"cross-env": "",
"css-loader": "",
"eslint": ">=8.21",
"eslint-plugin-react": "",
"genversion": "",
"html-webpack-plugin": "",
"jest": "",
"mini-css-extract-plugin": "",
"nodemon": "",
"prettier": "",
"ts-loader": "",
"tsc-alias": "",
"typescript": "",
"typescript-eslint": "",
"webpack": "",
"webpack-cli": ""
}
}