forked from dcSpark/paima-dice
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.88 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": "cards",
"version": "1.0.0",
"engines": {
"node": "^16.18"
},
"private": true,
"scripts": {
"initialize": "npm --prefix ../paima-sdk install && npm ci && cp .env.example ../.env.development",
"pack": "sh scripts/pack.sh",
"pack:middleware": "npm run build -w middleware/",
"build": "npx tsc --build tsconfig.build.json",
"lint": "eslint --ext ts,tsx --ignore-path .gitignore .",
"lint:fix": "eslint --ext ts,tsx --ignore-path .gitignore --fix .",
"prettier": "prettier --config .prettierrc --ignore-path .prettierignore --check .",
"prettier:fix": "prettier --write --config .prettierrc --ignore-path .prettierignore --check .",
"test": "DOTENV_CONFIG_PATH=../.env.development jest",
"test:watch": "npm test -- --watch",
"database:up": "cd db/docker && docker compose up",
"database:reset": "node change-db.js",
"compile:api": "npm run compile -w api/",
"compile:db": "npm run compile -w db/"
},
"workspaces": [
"./utils",
"./game-logic",
"./api",
"./db",
"./state-transition",
"./middleware"
],
"devDependencies": {
"@types/eslint": "^8.4.6",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "^29.2.2",
"@types/prettier": "^2.7.1",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"esbuild": "^0.17.5",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"dependencies": {
"paima-sdk": "file:../paima-sdk"
}
}