-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.62 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
{
"name": "jsgist",
"version": "0.1.0",
"private": true,
"dependencies": {
"@monaco-editor/react": "^4.4.6",
"@octokit/rest": "^18.12.0",
"ajv": "^8.9.0",
"base64-arraybuffer": "^1.0.2",
"codemirror": "^5.65.1",
"mime-types": "^2.1.34",
"minisearch": "^6.2.0",
"playground-elements": "^0.18.1",
"react": "^17.0.2",
"react-codemirror2": "^7.2.1",
"react-dom": "^17.0.2",
"react-scripts": "^3.4.4",
"react-split-it": "^2.0.0",
"uzip-module": "^1.0.3"
},
"scripts": {
"start": "concurrently -r \"servez public\" \"react-scripts start\"",
"build": "npm run build-react && npm run build-embed",
"build-ci": "npm run build-react && npm run build-embed && node build-extra.js",
"build-react": "react-scripts build",
"build-embed": "node src/embed/embed.webpack.config.js",
"pre-build": "echo \"TBD\" && exit 0",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.12",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@webgpu/types": "^0.1.34",
"concurrently": "^7.0.0",
"servez": "^1.12.1",
"typescript": "^4.5.5"
}
}