-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.73 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": "dice-ui",
"homepage": "/dice-ui/",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/runtime": "^7.5.5",
"@reach/router": "^1.3.4",
"@react-three/cannon": "^2.3.5",
"@react-three/fiber": "^7.0.1",
"@sentry/react": "^6.7.2",
"@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/mixpanel-browser": "^2.35.6",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/three": "^0.129.1",
"@vkontakte/icons": "^1.109.0",
"@vkontakte/vk-bridge": "^2.4.2",
"@vkontakte/vkjs": "^0.21.0",
"@vkontakte/vkui": "^4.9.1",
"jest": "^26.6.0",
"mixpanel-browser": "^2.41.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"three": "^0.129.0",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"test:changed": "yarn test --onlyChanged",
"test:watch:all": "yarn test --watchAll",
"test:watch:changed": "yarn test --watch --onlyChanged",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,json,css}\"",
"lint:js": "eslint \"./src/**/*.{js,jsx,ts,tsx}\" --max-warnings=0",
"lint:styles": "stylelint \"src/**/*.{css,sass,scss}\"",
"lint": "yarn lint:js && yarn lint:styles",
"check-types": "tsc"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@shopify/eslint-plugin": "^40.4.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jest-formatting": "^3.0.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-prettier": "^1.2.0"
},
"dependenciesMeta": {
"webpack-dev-server": {
"unplugged": true
}
}
}