-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.89 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@swingdev/frontend-template",
"version": "0.1.0",
"scripts": {
"start": "snowpack dev",
"build": "snowpack build",
"lint": "eslint src --ext .js,jsx,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"lint:watch": "esw -w --clear src --ext .js,jsx,.ts,.tsx",
"release": "standard-version",
"test": "web-test-runner \"src/**/*.test.{js,jsx,ts,tsx}\"",
"test:watch": "npm run test -- --watch",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^12.0.0",
"@snowpack/plugin-build-script": "^2.1.0",
"@snowpack/plugin-dotenv": "^2.0.5",
"@snowpack/plugin-react-refresh": "^2.4.0",
"@snowpack/plugin-run-script": "^2.3.0",
"@snowpack/plugin-sass": "^1.3.0",
"@snowpack/plugin-typescript": "^1.2.1",
"@snowpack/web-test-runner-plugin": "^0.2.1",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^5.0.3",
"@testing-library/user-event": "^13.0.0",
"@types/chai": "^4.2.14",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@types/snowpack-env": "^2.3.3",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"@web/test-runner": "^0.12.7",
"chai": "^4.3.0",
"eslint": "^7.19.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"eslint-plugin-typescript-sort-keys": "^1.5.0",
"eslint-watch": "^7.0.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.3",
"react-test-renderer": "^17.0.1",
"snowpack": "^3.0.1",
"standard-version": "^9.1.0",
"typescript": "^4.1.3"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"lint-staged": {
"*.ts?(x)": "eslint --fix",
"*.js?(x)": "eslint --fix"
}
}