-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.7 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "starforce",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:ci": "cross-env CI=true react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"type-check": "tsc --noEmit",
"postinstall": "patch-package && typesync",
"storybook": "start-storybook -p 6006 -s public --no-dll",
"build-storybook": "build-storybook -s public --no-dll"
},
"lint-staged": {
"*.{json,scss,md}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --quiet --fix",
"bash -c tsc --noEmit"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged && yarn test:ci",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"cannon": "^0.6.2",
"classnames": "^2.2.6",
"dat.gui": "^0.7.7",
"fontfaceobserver": "^2.1.0",
"gsap": "^3.5.1",
"howler": "^2.2.1",
"i18next": "^19.8.3",
"i18next-browser-languagedetector": "^6.0.1",
"immutable": "^4.0.0-rc.12",
"jquery": "^3.5.1",
"keyboard-focus": "^1.0.1",
"lodash": "^4.17.20",
"patch-package": "^6.2.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-i18next": "^11.7.3",
"react-lottie": "^1.2.3",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.0",
"redux": "^4.0.5",
"redux-act": "^1.8.0",
"redux-devtools-extension": "^2.13.8",
"redux-persist": "^6.0.0",
"redux-persist-transform-immutable": "^5.0.0",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"three": "^0.122.0",
"typescript": "^4.0.3",
"uuid": "^8.3.1",
"web-vitals": "^0.2.4"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@storybook/addon-actions": "^6.0.28",
"@storybook/addon-essentials": "^6.0.28",
"@storybook/addon-links": "^6.0.28",
"@storybook/node-logger": "^6.0.28",
"@storybook/preset-create-react-app": "^3.1.5",
"@storybook/react": "^6.0.28",
"@types/babel__core": "^7.1.12",
"@types/cannon": "^0.1.5",
"@types/classnames": "^2.2.11",
"@types/dat.gui": "^0.7.5",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/fontfaceobserver": "^0.0.6",
"@types/howler": "^2.2.1",
"@types/jquery": "^3.5.4",
"@types/lodash": "^4.14.163",
"@types/node-sass": "^4.11.1",
"@types/prettier": "^2.1.5",
"@types/react-is": "^16.7.1",
"@types/react-lottie": "^1.2.5",
"@types/react-redux": "^7.1.11",
"@types/react-router-dom": "^5.1.6",
"@types/stats.js": "^0.17.0",
"@types/testing-library__jest-dom": "^5.9.5",
"@types/uuid": "^8.3.0",
"commitlint": "^11.0.0",
"commitlint-config-gitmoji": "^1.0.1",
"cross-env": "^7.0.2",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-unused-imports": "^1.0.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"node-sass": "^4.0.0",
"prettier": "^2.1.2",
"react-is": "^17.0.1",
"typesync": "^0.8.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}