-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
28 lines (28 loc) · 916 Bytes
/
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
{
"name": "@jackstenglein/chess-dojo-common",
"version": "1.0.0",
"description": "Common code shared between ChessDojo website, mobile app and backend",
"main": "index.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"lint": "eslint ."
},
"author": "jackstenglein",
"license": "MIT",
"dependencies": {
"@jackstenglein/chess": "^2.2.9",
"ml-regression-simple-linear": "^3.0.1",
"stripe": "^17.5.0",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@jackstenglein/eslint-config-dojo": "file:../eslint-config-dojo",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^8.57.0",
"eslint-plugin-eqeqeq-fix": "^1.0.3",
"prettier-plugin-organize-imports": "^3.2.4"
}
}