forked from SalvatorePreviti/js13k-2022
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.06 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.06 KB
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
{
"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 .",
"test": "mocha -r ts-node/register -r tsconfig-paths/register --recursive ./test/**/*.test.ts",
"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.19.0",
"@babel/helper-annotate-as-pure": "^7.18.6",
"@balsamic/dev": "^0.3.25",
"@balsamic/eslint-config": "^0.2.2",
"@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.0",
"@tdewolff/minify": "^2.12.0",
"@types/adm-zip": "^0.5.0",
"@types/babel__core": "^7.1.19",
"@types/chai": "^4.3.3",
"@types/csso": "^5.0.0",
"@types/google-closure-compiler": "^0.0.19",
"@types/html-minifier-terser": "^7.0.0",
"@types/jsdom": "^20.0.0",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.17",
"@types/react": "^18.0.19",
"@types/react-dom": "^18.0.6",
"@types/svgo": "^2.6.4",
"@types/uglify-js": "^3.17.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"@vitejs/plugin-react": "^2.1.0",
"adm-zip": "^0.5.9",
"babel-plugin-minify-constant-folding": "^0.5.0",
"babel-plugin-minify-dead-code-elimination": "^0.5.2",
"babel-plugin-pure-calls-annotation": "^0.4.2",
"chai": "^4.3.6",
"clean-css": "^5.3.1",
"cssnano": "^5.1.13",
"cssnano-preset-advanced": "^5.3.8",
"csso": "^5.0.5",
"dprint": "^0.32.1",
"esbuild": "^0.15.7",
"eslint": "^8.23.1",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"google-closure-compiler": "^20220905.0.0",
"html-minifier-terser": "7.0.0",
"jsdom": "^20.0.0",
"less": "^4.1.3",
"mocha": "^10.0.0",
"node-zopfli": "^2.1.4",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"roadroller": "^2.1.0",
"rollup": "^2.79.0",
"rollup-plugin-visualizer": "^5.8.1",
"spglsl": "^0.2.6",
"svgo": "^2.8.0",
"terser": "^5.15.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.3",
"uglify-js": "^3.17.0",
"vite": "^3.1.0"
}
}