-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.25 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
{
"scripts": {
"start": "snowpack dev",
"build": "snowpack build",
"api": "uvicorn src.fite.api:app --reload --reload-dir src/ --port 8000",
"test": "web-test-runner \"client/**/*.test.tsx\"",
"kill": "fuser -k 8000/tcp && fuser -k 8080/tcp",
"format": "prettier --write \"client/**/*.{js,jsx,ts,tsx}\" --print-width 120 --tab-width 2",
"lint": "prettier --check \"client/**/*.{js,jsx,ts,tsx}\" --tab-width 2 --print-width 120"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@snowpack/plugin-dotenv": "^2.1.0",
"@snowpack/plugin-react-refresh": "^2.5.0",
"@snowpack/plugin-typescript": "^1.2.1",
"@snowpack/web-test-runner-plugin": "^0.2.2",
"@testing-library/react": "^11.2.6",
"@types/chai": "^4.2.17",
"@types/lodash.debounce": "^4.0.7",
"@types/mocha": "^8.2.2",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"@types/snowpack-env": "^2.3.3",
"@web/test-runner": "^0.13.3",
"chai": "^4.3.4",
"prettier": "^2.7.1",
"snowpack": "^3.3.7",
"typescript": "^4.2.4"
}
}