-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "root",
"private": true,
"scripts": {
"db:start": "pnpm -F db run start",
"db:down": "pnpm -F db run down",
"format": "pnpm -r format",
"format:check": "pnpm -r format:check",
"frontend:dev": "pnpm db:start && sleep 1 && pnpm -F frontend run dev",
"lint": "pnpm -r lint",
"prepare": "husky install && pnpm -F db run build && pnpm -F nymjs run build",
"studio": "pnpm -F db run studio",
"test": "pnpm -r test",
"test_data:populate": "pnpm db:start && sleep 1 && pnpm -F test_data run populate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/personaelabs/nym"
},
"author": "personae labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/personaelabs/nym/issues"
},
"homepage": "https://github.com/personaelabs/nym#readme",
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --cache --fix"
],
"*.{js,ts,tsx,json}": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@types/jest": "^29.5.2",
"eslint": "^8.43.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "2.8.7"
},
"husky": {
"hooks": {
"pre-commit": "bash .husky/pre-commit"
}
}
}