-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.8 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
{
"name": "pensieve",
"homepage": "https://pensieve.amatiasq.com/",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"build-ci": "tsc && vite build",
"serve": "vite preview --port 1234",
"pwa": "npm run build && npm run serve",
"lint": "eslint . --ext .ts",
"prepare": "husky install",
"cloudflare:login": "wrangler login",
"api": "cd src/api && wrangler dev",
"api:deploy": "cd src/api && wrangler publish",
"cypress": "cypress open",
"e2e": "cypress run"
},
"browserslist": [
"> 1% and last 2 versions"
],
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
},
"dependencies": {
"@amatiasq/client-storage": "^3.0.3",
"@amatiasq/emitter": "^4.1.2",
"@amatiasq/scheduler": "^3.0.0",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@monaco-editor/react": "^4.3.1",
"@szhsin/react-menu": "^3.1.2",
"axios": "^0.21.2",
"body-parser": "^1.19.0",
"colorjs.io": "^0.3.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"localforage": "^1.9.0",
"monaco-editor": "^0.25.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"rxjs": "^7.1.0",
"usehooks-ts": "^2.2.1",
"uuid": "^3.4.0"
},
"devDependencies": {
"@cloudflare/wrangler": "^1.20.0",
"@emotion/babel-plugin": "^11.9.5",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@vitejs/plugin-react": "^2.0.0",
"cypress": "^9.1.1",
"dotenv": "^10.0.0",
"eslint": "^7.19.0",
"husky": "^7.0.1",
"rollup-plugin-visualizer": "^5.7.1",
"typescript": "^4.3.5",
"vite": "^3.0.4",
"vite-plugin-pwa": "^0.12.3"
}
}