forked from soulmachines/react-reference-ui-public
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.07 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.07 KB
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
{
"name": "react-reference-ui",
"version": "1.0.0",
"engines": {
"node": ">=16"
},
"private": true,
"scripts": {
"start": "npm run build && npx serve -s build",
"dev": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy:gcp": "npm run build && gcloud app deploy --project ui-test-persona-nhyv app.yaml --stop-previous-version --promote --version baseline --quiet"
},
"dependencies": {
"@juggle/resize-observer": "^3.3.1",
"@reduxjs/toolkit": "^1.6.0",
"@soulmachines/smwebsdk": "15.7.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"await-to-js": "^3.0.0",
"bootstrap": "5.2.0-beta1",
"color": "^4.2.3",
"dotenv": "^8.2.0",
"framer-motion": "^4.1.17",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-bootstrap-icons": "^1.10.2",
"react-dom": "^17.0.2",
"react-ga": "^3.3.1",
"react-ga4": "^1.4.1",
"react-markdown": "^6.0.2",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-scripts": "5.0.1",
"react-tooltip": "^4.2.21",
"react-youtube": "^7.13.1",
"redux": "^4.1.0",
"redux-thunk": "^2.3.0",
"rehype-sanitize": "^5.0.0",
"remark-gfm": "^2.0.0",
"styled-components": "^5.3.0",
"syllable": "^5.0.0",
"web-vitals": "^1.1.2"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0"
}
}