-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.4 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.4 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
{
"private": false,
"name": "@outdoormap/frontend-utils",
"description": "Outdoormap > Front End Utilities",
"version": "0.0.1",
"author": "Odd Camp <support@outdoormap.com>",
"license": "MIT",
"main": "index.js",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"demo": "node ./server.js",
"lint-html": "eslint --ext .html --ext .html.erb app/views",
"lint-js": "eslint ./js --ext js,jsx",
"format-js": "eslint ./js --ext js,jsx --fix",
"lint-scss": "stylelint **/*.scss",
"format-scss": "stylelint **/*.scss --fix"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.19.4",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-flow": "^7.18.6",
"@babel/plugin-transform-destructuring": "^7.20.0",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@babel/plugin-transform-regenerator": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^3.1.0",
"esbuild-plugin-eslint": "^0.1.1",
"eslint": "^8.26.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"express": "^4.18.2",
"path": "^0.12.7",
"postcss": "8",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^15.0.0",
"postcss-inline-svg": "^5.0.0",
"postcss-preset-env": "^7.8.2",
"postcss-scss": "^4.0.5",
"postcss-svgo": "^5.1.0",
"prettier": "^2.8.7",
"stylelint": "^14.14.0",
"stylelint-at-rule-import-case": "^1.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-standard-scss": "^6.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-scss": "^4.3.0",
"stylelint-webpack-plugin": "^4.1.1"
}
}