-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.75 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.75 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
{
"name": "quick-launcher",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack serve --mode=development --config webpack.config.js --progress --profile",
"build": "webpack --mode=production",
"lint": "npm run-script lint:js && npm run-script lint:css && npm run-script lint:md",
"lint:js": "eslint src utilities",
"lint:css": "stylelint src/**/*.css",
"lint:md": "remark ."
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-arrow-functions": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"babel-loader": "^8.1.0",
"browserslist": "^4.16.5",
"copy-webpack-plugin": "^6.3.0",
"css-loader": "^5.0.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^5.0.0-alpha.3",
"mini-css-extract-plugin": "^1.3.0",
"react-dev-utils": "^11.0.0",
"remark-cli": "^10.0.0",
"remark-lint": "^9.0.1",
"remark-preset-lint-recommended": "^6.0.1",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^4.1.0"
},
"dependencies": {
"@reach/router": "^1.3.4",
"classnames": "^2.2.6",
"core-js": "^3.8.1",
"isomorphic-fetch": "^3.0.0",
"moment-timezone": "^0.5.33",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"regenerator-runtime": "^0.13.7",
"showdown": "^1.9.1"
}
}