-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.58 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
{
"name": "2024-CircuitBreaker",
"version": "1.0.1",
"author": "Knocks",
"license": "MIT",
"scripts": {
"install": "cd packages/frontend && npm install",
"dev": "cd packages/frontend && npm run dev",
"clean": "npx rimraf node_modules out && cd packages/frontend && npx rimraf node_modules out dist coverage",
"deploy:circuit": "cd packages/circuit && make deploy",
"test": "cd packages/frontend && npm run test",
"test:coverage": "cd packages/frontend && npm run test:coverage",
"test:watch": "cd packages/frontend && npm run test:watch",
"lint": "cd packages/frontend && npm run lint",
"lint:fix": "cd packages/frontend && npm run lint:fix",
"lint:text": "npx textlint ./README.md",
"lint-staged": "lint-staged",
"format": "cd packages/frontend && npm run format",
"format:check": "cd packages/frontend && npm run format:check",
"prepare": "husky install",
"start:frontend": "cd packages/frontend && npm start"
},
"devDependencies": {
"@tsconfig/react-native": "^3.0.3",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.63",
"@types/react-test-renderer": "^18.0.7",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"textlint": "^14.0.3",
"textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet": "^1.0.1",
"textlint-rule-no-mixed-zenkaku-and-hankaku-number": "^1.0.0",
"textlint-rule-preset-ja-spacing": "^2.2.0",
"textlint-rule-preset-ja-technical-writing": "^10.0.1",
"textlint-rule-spellcheck-tech-word": "^5.0.0",
"typescript": "^5.3.3"
}
}