-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.51 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
{
"name": "kifu-io",
"version": "0.0.1",
"description": "An SGF hosting website",
"main": "index.js",
"scripts": {
"start": "bsb -make-world && react-scripts start",
"test": "bsb -make-world && react-scripts test --transformIgnorePatterns \"/node_modules/^(bs-platform)\"",
"build": "bsb -make-world && cross-env EXTEND_ESLINT=true react-scripts build",
"now-build": "bsb -make-world && cross-env EXTEND_ESLINT=true react-scripts build",
"typecheck": "tsc --project tsconfig.json --noEmit --skipLibCheck",
"test:watch": "npm run test -- --watch",
"prettier": "prettier --write src/**/*.{ts,tsx}"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/airjp73/go-reviews-next.git"
},
"author": "Aaron Pettengill",
"license": "UNLICENSED",
"homepage": "https://www.kifu.io",
"dependencies": {
"@reach/rect": "^0.2.1",
"@types/reach__rect": "^0.2.0",
"firebase": "^7.8.0",
"framer-motion": "^1.8.4",
"immer": "^5.3.2",
"lodash": "^4.17.11",
"normalize.css": "^8.0.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-feather": "^1.1.6",
"react-firebaseui": "^4.1.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.3.1",
"react-spring": "^8.0.27",
"react-toastify": "^5.5.0",
"reason-react": "^0.7.0",
"styled-components": "^4.1.3",
"uuid": "^3.4.0"
},
"devDependencies": {
"@types/jest": "^24.0.5",
"@types/jest-each": "^0.3.4",
"@types/lodash": "^4.14.121",
"@types/react": "^16.8.22",
"@types/react-dom": "^16.8.2",
"@types/react-router-dom": "^5.1.3",
"@types/react-toastify": "^4.1.0",
"@types/styled-components": "^4.1.10",
"@types/uuid": "^3.4.7",
"babel-eslint": "^10.0.3",
"babel-plugin-styled-components": "^1.10.0",
"bs-platform": "^7.1.0",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"gentype": "^3.12.0",
"husky": "^1.3.1",
"jest-dom": "^3.1.2",
"jest-each": "^24.0.0",
"lint-staged": "^8.1.5",
"prettier": "^1.19.1",
"pretty-quick": "^1.11.1",
"react-testing-library": "^5.8.0",
"ts-jest": "^23.10.5",
"typescript": "^3.7.5"
},
"husky": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": [
"pretty-quick --staged",
"git add"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}