-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.71 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
{
"name": "workshop",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack serve --mode=development --open",
"lint": "eslint --ext .ts,.tsx src",
"build": "webpack --mode=production",
"fmt": "prettier --write ."
},
"simple-git-hooks": {
"pre-commit": "npm run fmt && npm run lint -- --fix && git add ."
},
"repository": "github:NaridaL/workshop",
"keywords": [],
"author": "",
"license": "ISC",
"prettier": {
"semi": false,
"trailingComma": "all",
"proseWrap": "always",
"overrides": [
{
"files": [
"*.frag"
],
"options": {
"parser": "glsl-parser"
}
}
],
"plugins": ["prettier-plugin-glsl"]
},
"devDependencies": {
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@loadable/component": "5.15.3",
"@mui/icons-material": "5.14.3",
"@mui/material": "5.14.3",
"@sucrase/webpack-loader": "2.0.0",
"@types/blob-stream": "0.1.30",
"@types/chai": "4.3.5",
"@types/copy-webpack-plugin": "8.0.1",
"@types/loadable__component": "5.13.4",
"@types/lodash": "4.14.196",
"@types/opentype.js": "1.3.4",
"@types/pdfkit": "0.12.10",
"@types/react": "18.2.18",
"@types/react-dom": "18.2.7",
"@types/react-router-dom": "5.3.3",
"@types/seedrandom": "3.0.5",
"@types/webpack-env": "1.18.1",
"@typescript-eslint/eslint-plugin": "6.2.1",
"@typescript-eslint/parser": "6.2.1",
"aesthetically": "0.0.6",
"blob-stream": "0.1.3",
"chai": "4.3.7",
"chroma.ts": "1.0.10",
"copy-webpack-plugin": "11.0.0",
"eslint": "8.46.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-react-hooks": "4.6.0",
"html-webpack-plugin": "5.5.3",
"js-file-download": "0.4.12",
"lodash": "^4.17.21",
"opentype.js": "1.3.4",
"path-browserify": "^1.0.1",
"pdfkit": "0.13.0",
"prettier": "3.0.1",
"prettier-plugin-glsl": "0.1.2",
"react": "18.2.0",
"react-dnd": "16.0.1",
"react-dnd-html5-backend": "16.0.1",
"react-dom": "18.2.0",
"react-router-dom": "6.14.2",
"seedrandom": "3.0.5",
"simple-git-hooks": "2.9.0",
"sleep-promise": "9.1.0",
"source-map": "^0.7.4",
"source-map-js": "^1.0.2",
"source-map-loader": "4.0.1",
"sucrase": "3.34.0",
"svg-pathdata": "6.0.3",
"svg-to-pdfkit": "0.1.8",
"ts3dutils": "1.1.6",
"tsgl": "1.1.9",
"typescript": "5.1.6",
"val-loader": "5.0.1",
"webgl-strict-types": "1.0.5",
"webpack": "5.88.2",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1"
}
}