-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 4.07 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "singularity",
"version": "1.0.1",
"homepage": "https://singularity-app.netlify.app/",
"description": "Singularity is a Virtual Tabletop application based on Fari. License: AGPL-3.0-or-later",
"author": "V-Jira",
"license": "AGPL-3.0",
"main": "index.js",
"engines": {
"node": "^16.2.0"
},
"scripts": {
"ci": "npm install && npm run build && npm run validate",
"start": "vite --open",
"start:all": "concurrently npm:start:all:*",
"start:all:vite": "vite --open",
"start:all:eleventy": "npm run eleventy -- --watch",
"postinstall": "npm run eleventy",
"build": "vite build",
"i18n": "node -r esm i18n.js",
"eleventy": "npx @11ty/eleventy",
"serve:build": "vite preview --port 1234",
"preview": "npm run build && npm run deploy:preview",
"beta": "npm run build && npm run deploy:preview -- --alias beta",
"alpha": "npm run build && npm run deploy:preview -- --alias alpha",
"tsc": "tsc --project tsconfig.json --incremental --noEmit",
"lint": "eslint 'lib/**' --cache",
"test": "jest --coverage --runInBand",
"test:watch": "node --inspect node_modules/.bin/jest --runInBand --watch",
"int": "npm run build && concurrently \"cypress run\" \"npm run serve:build\" --success first --kill-others --names \"cypress,server\" ",
"int:start": "concurrently \"cypress open\" \"npm run start\" --success first --kill-others --names \"cypress,server\" ",
"tsc-and-lint": "npm run tsc && npm run lint",
"validate": "npm run tsc && npm run lint && npm run test",
"deploy:preview": "netlify deploy --site c4b066e2-c675-41f7-91f6-6f5f08dbbaf6",
"deploy:prod": "netlify deploy --site c4b066e2-c675-41f7-91f6-6f5f08dbbaf6 --prod",
"chromatic": "chromatic --project-token CHROMATIC_PROJECT_TOKEN --exit-zero-on-changes",
"clean": "rm -rf node_modules && npm install"
},
"dependencies": {
"@11ty/eleventy": "^0.12.1",
"@emotion/css": "^11.1.3",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.5",
"@mui/lab": "^5.0.0-alpha.53",
"@mui/material": "^5.0.6",
"@mui/styles": "^5.0.2",
"@mui/x-data-grid": "^5.0.0-beta.4",
"@types/hoist-non-react-statics": ">= 3.3.1",
"@types/node": "^15.6.1",
"axios": "^0.21.2",
"canvas-confetti": "^1.4.0",
"dayjs": "^1.10.4",
"dompurify": "^2.2.8",
"i18next": "^20.3.0",
"i18next-browser-languagedetector": "^6.1.1",
"i18next-http-backend": "^1.2.6",
"immer": "^9.0.6",
"jest-junit": "^12.1.0",
"lodash": "^4.17.21",
"marked": "^2.0.5",
"netlify-cli": "^3.31.3",
"peerjs": "^1.3.2",
"react": "^17.0.2",
"react-color": "^2.19.3",
"react-dnd": "^14.0.2",
"react-dnd-html5-backend": "^14.0.0",
"react-dom": "^17.0.2",
"react-helmet-async": "^1.0.9",
"react-i18next": "^11.9.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"roughjs": "^4.4.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@testing-library/react": "^11.2.7",
"@testing-library/react-hooks": "^7.0.0",
"@types/dompurify": "^2.2.2",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.170",
"@types/marked": "^2.0.3",
"@types/react": "^17.0.15",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-color": "^3.0.4",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.7",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"@vitejs/plugin-legacy": "^1.6.2",
"@vitejs/plugin-react": "^1.0.9",
"babel-loader": "^8.2.2",
"chromatic": "^5.8.3",
"concurrently": "^6.2.0",
"cypress": "^7.4.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"esm": "^3.2.25",
"fs-extra": "^10.0.0",
"jest": "^27.0.4",
"parcel": "1.12.3",
"prettier": "^2.3.0",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.0.3",
"typescript": "^4.4.2",
"vite": "^2.6.14"
}
}