-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
87 lines (87 loc) · 2.56 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
{
"name": "js13k-2022",
"version": "13.13.13",
"description": "js13k-2022",
"main": "index.js",
"scripts": {
"start": "node dev/server.js",
"build": "node dev/build.js",
"clean": "rm -fr dist",
"lint": "eslint . --fix && prettier --write --loglevel=warn .",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SalvatorePreviti/js13k-2022.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SalvatorePreviti/js13k-2022/issues"
},
"homepage": "https://github.com/SalvatorePreviti/js13k-2022#readme",
"private": true,
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"js13k-2022"
],
"devDependencies": {
"@babel/core": "^7.20.12",
"@balsamic/dev": "^0.4.0",
"@balsamic/eslint-config": "^0.3.0",
"@resugar/codemod-declarations-block-scope": "^1.0.3",
"@resugar/codemod-functions-arrow": "^1.0.2",
"@resugar/codemod-objects-concise": "^1.0.2",
"@resugar/codemod-objects-shorthand": "^1.0.1",
"@swc/core": "^1.3.26",
"@tdewolff/minify": "^2.12.4",
"@types/adm-zip": "^0.5.0",
"@types/babel__core": "^7.1.20",
"@types/csso": "^5.0.0",
"@types/google-closure-compiler": "^0.0.19",
"@types/html-minifier-terser": "^7.0.0",
"@types/jsdom": "^20.0.1",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/uglify-js": "^3.17.1",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@vitejs/plugin-react": "^3.0.1",
"adm-zip": "^0.5.10",
"babel-plugin-minify-constant-folding": "^0.5.0",
"clean-css": "^5.3.1",
"cssnano": "^5.1.14",
"cssnano-preset-advanced": "^5.3.9",
"csso": "^5.0.5",
"dprint": "^0.34.1",
"esbuild": "^0.17.0",
"eslint": "^8.32.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"google-closure-compiler": "^20230103.0.0",
"html-minifier-terser": "7.1.0",
"jsdom": "^21.0.0",
"less": "^4.1.3",
"node-zopfli": "^2.1.4",
"prettier": "^2.8.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"roadroller": "^2.1.0",
"rollup": "^3.10.0",
"spglsl": "^0.2.7",
"svgo": "^3.0.2",
"terser": "^5.16.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4",
"uglify-js": "^3.17.4",
"vite": "^4.0.4"
}
}