This repository has been archived by the owner on Jul 26, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
76 lines (76 loc) · 2.87 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
{
"name": "ESLint-Playground",
"version": "1.0.0",
"private": true,
"description": "",
"main": "index.js",
"keywords": [],
"license": "Apache-2.0",
"repository": "eslint/playground",
"funding": "https://opencollective.com/eslint",
"bugs": "https://github.com/eslint/playground/issues/",
"scripts": {
"images": "imagemin '_site/assets/images' --out-dir='_site/assets/images'",
"install:playground": "cd src/playground && npm install --no-package-lock",
"watch:sass": "sass --watch src/assets/scss:src/assets/css",
"watch:eleventy": "eleventy --serve --port=2024",
"watch:webpack": "webpack watch --mode=development",
"build:sass": "sass --style=compressed src/assets/scss:src/assets/css --no-source-map",
"build:eleventy": "eleventy --quiet",
"build:webpack": "webpack --mode=production --progress",
"start": "node tools/dev-server.js",
"build": "npm-run-all install:playground build:sass build:eleventy build:webpack images",
"lint": "eslint --ext=.js,.jsx .",
"fix": "npm run lint -- --fix",
"postinstall": "npm run install:playground"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.1",
"@11ty/eleventy-img": "^1.0.0",
"@11ty/eleventy-navigation": "^0.3.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.2",
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.3",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"dom-parser": "^0.1.6",
"eslint": "^8.13.0",
"eslint-config-eslint": "^7.0.0",
"eslint-plugin-jsdoc": "^39.2.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"express": "^4.17.3",
"imagemin": "^8.0.1",
"imagemin-cli": "^7.0.0",
"js-yaml": "^3.14.1",
"morgan": "^1.10.0",
"node-polyfill-webpack-plugin": "^1.1.4",
"npm-run-all": "^4.1.5",
"regenerator-runtime": "^0.13.5",
"rimraf": "^3.0.2",
"sass": "^1.52.1",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@codemirror/highlight": "^0.19.7",
"@codemirror/history": "^0.19.2",
"@codemirror/lang-javascript": "^0.19.7",
"@codemirror/matchbrackets": "^0.19.4",
"@codemirror/state": "^0.19.9",
"@codemirror/tooltip": "^0.19.16",
"@codemirror/view": "^0.19.47",
"@uiw/react-codemirror": "^4.5.1",
"crelt": "^1.0.5",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-select": "^5.3.2",
"react-split": "^2.0.14"
}
}