-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.25 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.25 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
{
"name": "wave",
"version": "0.2.0",
"private": true,
"homepage": "/wave",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"scripts": {
"start": "wasm-pack build wave --target web && vite",
"build": "wasm-pack build --release wave --target web && vite build --emptyOutDir"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.13.0",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@reduxjs/toolkit": "^1.3.5",
"body-scroll-lock": "4.0.0-beta.0",
"lodash.clonedeep": "^4.0.0",
"lodash.debounce": "^4.0.8",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-redux": "^7.2.0",
"react-timeout": "^2.0.0",
"redux-thunk": "^2.3.0",
"typeface-montserrat": "^1.1.0",
"typeface-roboto": "^1.1.0",
"typeface-roboto-mono": "^1.1.0",
"uuid": "^8.0.0",
"vite": "^3.2.11"
},
"devDependencies": {
"@types/body-scroll-lock": "^2.6.1",
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.debounce": "^4.0.6",
"@types/node": "^16.3.1",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-fontawesome": "^1.6.4",
"@types/react-redux": "^7.1.7",
"@types/react-timeout": "^1.1.1",
"@types/styled-components": "^5.1.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"@vitejs/plugin-react": "^1.1.0",
"eslint": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.0.0",
"husky": "^7.0.1",
"lint-staged": "^12.1.2",
"prettier": "^2.2.0",
"pretty-quick": "^3.1.0",
"sass": "^1.44.0",
"styled-components": "^5.1.1",
"typescript": "^4.2.0",
"vite-plugin-wasm-pack": "^0.1.0"
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx,json}": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}