-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.83 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.83 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
{
"name": "maze",
"version": "1.1.1",
"description": "Kids maze game.",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist && rm -rf node_modules",
"start": "npm install && npm run lint && webpack serve --config webpack.config.js",
"lint": "npm run lint:es && npm run lint:style",
"lint:es": "eslint --format=pretty --ext .jsx --ext .js .",
"lint:style": "stylelint '**/*.scss'",
"build": "webpack --mode production",
"gh-pages": "npm install && npm run build && gh-pages -d dist -b gh-pages",
"prepare": "husky install"
},
"author": "matthew schaadt",
"license": "ISC",
"dependencies": {
"@soundslikeodd/package-banner": "^1.3.0",
"classnames": "^2.3.2",
"figlet": "^1.6.0",
"history": "^5.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"seedrandom": "^3.0.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^9.1.0",
"css-loader": "^6.7.2",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-formatter-pretty": "^4.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"postcss-scss": "^4.0.6",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"stylelint": "^15.2.0",
"stylelint-config-standard": "^30.0.1",
"stylelint-scss": "^4.4.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1"
}
}