-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (104 loc) · 2.54 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "bias",
"description": " Interactive game exhibit that explores data bias and human responsibility",
"version": "1.0.0",
"private": true,
"author": "Jan-Niklas Dihlmann (@jdihlmann)",
"license": "MIT",
"keywords": [
"react",
"typescript",
"bias",
"game",
"exhibit",
"interactive",
"machine learning",
"art",
"science",
"education"
],
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"dev": "yarn start",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"transfer": "rsync -az --delete build/ --exclude '.env' hetzner:/var/www/jdihlmann/bias"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"yarn lint --fix",
"yarn format"
]
},
"dependencies": {
"@craco/craco": "^6.4.5",
"@react-three/drei": "9.31.0",
"@react-three/fiber": "8.7.4",
"@react-three/postprocessing": "2.6.2",
"@theatre/core": "0.5",
"@theatre/r3f": "0.5",
"@theatre/studio": "0.5",
"@types/three": "0.144.0",
"apexcharts": "^3.41.0",
"craco-css-modules": "^1.0.1",
"dotenv-cra": "^3.0.3",
"dotenv-webpack": "^8.0.1",
"framer-motion": "^7.6.2",
"immer": "^9.0.15",
"lamina": "^1.1.23",
"leva": "^0.9.31",
"nanoid": "^4.0.0",
"react": "18.2.0",
"react-apexcharts": "^1.4.0",
"react-dom": "18.2.0",
"react-router-dom": "^6.4.0",
"react-scripts": "^5.0.1",
"react-type-animation": "^2.1.2",
"styled-components": "^5.3.6",
"three": "0.144.0",
"three-stdlib": "^2.15.0"
},
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@types/node": "18.7.18",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "5.37.0",
"@typescript-eslint/parser": "5.37.0",
"autoprefixer": "10.4.11",
"commitizen": "4.2.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.23.1",
"eslint-config-next": "12.2.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.5.1",
"eslint-plugin-prettier": "4.2.1",
"gh-pages": "^4.0.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}