This repository has been archived by the owner on Apr 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
69 lines (69 loc) · 2.17 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
{
"name": "@owenbendavies/cms",
"version": "1.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/owenbendavies/cms.git"
},
"engines": {
"node": "18",
"yarn": "~1.22.17"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"build:css": "sass ./app/assets/stylesheets/application.scss ./app/assets/builds/application.css --no-source-map --load-path=node_modules",
"lint": "npm-run-all lint:eslint lint:stylelint lint:prettier",
"lint:eslint": "eslint --ignore-path .gitignore --ext js,jsx .",
"lint:stylelint": "stylelint --ignore-path .gitignore '**/*.{css,scss}'",
"lint:prettier": "prettier --ignore-path .gitignore --check ."
},
"dependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@rails/ujs": "^7.1.3",
"apollo-boost": "^0.4.9",
"autosize": "^6.0.1",
"babel-loader": "^9.1.3",
"bootstrap": "^4.6.1",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"jquery": "^3.7.1",
"lodash": "^4.17.20",
"ra-data-graphql": "^4.16.15",
"ra-input-rich-text": "^3.19.12",
"react": "^17.0.2",
"react-admin": "^3.19.12",
"react-dom": "^18.2.0",
"sass": "^1.75.0",
"timeago": "^1.6.7",
"turbolinks": "^5.2.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"@namics/stylelint-bem": "^10.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"stylelint": "^15.11.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^11.1.0"
},
"browserslist": [
"defaults"
]
}