-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.43 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
{
"name": "fintasy",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@9.4.0",
"description": "CS.3354 Project: Competitive paper trading platform",
"contributors": [
"adibarra <github@adibarra.com> (https://adibarra.com)"
],
"scripts": {
"build": "pnpm --parallel --color run build",
"clean": "pnpm --parallel run clean",
"clean:all": "pnpm --parallel run clean:all && rm -rf node_modules/ .pnpm-store/",
"dev": "pnpm -r run clean && pnpm --parallel --color run dev",
"dev:client": "pnpm -r run clean && pnpm --parallel --color --filter client run dev",
"dev:server": "pnpm -r run clean && pnpm --parallel --color --filter server run dev",
"lint": "pnpm --parallel --color run lint; eslint . --cache; exit 0",
"lint:fix": "pnpm --parallel --color run lint:fix; eslint . --fix --cache; exit 0",
"postinstall": "pnpm simple-git-hooks",
"preview": "pnpm -r run clean && pnpm --parallel --color run preview",
"taze": "taze -r -I",
"test": "pnpm --parallel --color run test",
"typecheck": "pnpm --parallel run typecheck"
},
"devDependencies": {
"@antfu/eslint-config": "^2.21.2",
"eslint": "^9.6.0",
"eslint-plugin-format": "^0.1.2",
"lint-staged": "^15.2.7",
"simple-git-hooks": "^2.11.1",
"taze": "^0.14.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm run lint:fix"
}
}