forked from quadratichq/quadratic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.35 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
{
"name": "quadratic",
"version": "0.1.0",
"author": {
"name": "David Kircos",
"email": "[email protected]",
"url": "https://quadratichq.com"
},
"repository": "https://github.com/quadratichq/quadratic.git",
"private": true,
"dependencies": {
"@auth0/auth0-react": "^1.11.0",
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@inlet/react-pixi": "^6.6.5",
"@monaco-editor/react": "^4.3.1",
"@mui/icons-material": "^5.2.0",
"@mui/material": "^5.2.2",
"@sentry/react": "^6.19.6",
"@sentry/tracing": "^6.19.6",
"@szhsin/react-menu": "^2.3.4",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^27.0.2",
"@types/node": "^14.14.31",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"ace-builds": "^1.4.13",
"axios": "^0.24.0",
"date-fns": "^2.28.0",
"dexie": "^3.2.0",
"dexie-react-hooks": "^1.1.1",
"monaco-editor": "^0.31.1",
"pixi-cull": "^2.1.0",
"pixi-viewport": "^4.35.1",
"pixi.js": "^6.5.2",
"react": "^17.0.2",
"react-device-detect": "^2.2.2",
"react-dom": "^17.0.2",
"react-scripts": "5.0.1",
"recoil": "^0.6.0",
"typescript": "^4.4.4",
"web-vitals": "^1.0.1"
},
"main": "public/electron.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test-all": "concurrently \"npm run test-unit\" \"npm run test-e2e\" \"npm run test-python\"",
"test-unit": "react-scripts test",
"test-e2e": "playwright test --workers=1",
"test-python": "python3 tests-python/test.py",
"eject": "react-scripts eject",
"dev": "concurrently -k \"BROWSER=none npm start\" \"wait-on http://localhost:3000 && electron .\"",
"electron": "electron ."
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"eslintIgnore": [
"node_modules/*"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@playwright/test": "^1.22.2",
"concurrently": "^6.3.0",
"electron": "^15.3.0",
"electron-is-dev": "^2.0.0",
"wait-on": "^6.0.1"
}
}