-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "family-of-functions",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
"prepare": "husky install"
},
"dependencies": {
"algebrite": "^1.4.0",
"bootstrap": "^5.2.1",
"d3": "^7.6.1",
"next": "12.3.1",
"react": "18.2.0",
"react-bootstrap": "^2.5.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/d3": "^7.4.0",
"@types/node": "18.7.18",
"@types/react": "18.0.20",
"@types/react-bootstrap": "^0.32.30",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "8.23.1",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.8",
"husky": "^8.0.0",
"prettier": "^2.7.1",
"typescript": "4.8.3"
},
"type": "module"
}