-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.72 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.72 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "assembly-ai",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "jest --detectOpenHandles",
"test:watch": "jest --watch",
"test:cov": "jest --coverage --coverageReporters='text-summary'",
"lint": "eslint . --ext ts,tsx --quiet --fix --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write 'src/**/*.{js,ts,jsx,tsx,json,css}'",
"preview": "vite preview",
"prepare": "husky install",
"style:all": "tsc && npm run style:lint && npm run style:prettier",
"style:lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"style:prettier": "prettier --check \"**/*.{js,jsx,ts,tsx}\"",
"make-pretty": "prettier --write \"**/*.{js,jsx,ts,tsx}\""
},
"lint-staged": {
"*.{js, jsx,ts,tsx}": [
"eslint --quiet --fix"
],
"*.{json,js,ts,jsx,tsx,html}": [
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@babel/plugin-syntax-jsx": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@testing-library/user-event": "^14.5.1",
"@vitejs/plugin-react": "^4.0.3",
"axios": "^1.6.0",
"immer": "^10.0.3",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite": "^4.4.5",
"vite-plugin-environment": "^1.1.3",
"zustand": "^4.4.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"@types/jest": "^29.5.10",
"@types/react": "^18.2.34",
"@types/react-dom": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"autoprefixer": "^10.4.16",
"babel-plugin-transform-imports": "^2.0.0",
"eslint": "^8.54.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"husky": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"postcss": "^8.4.31",
"prettier": "^3.1.0",
"prettier-eslint": "^16.1.2",
"react-test-renderer": "^18.2.0",
"tailwindcss": "^3.3.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1"
}
}