forked from t3-innovation-network/desm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.57 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
{
"name": "app",
"private": true,
"dependencies": {
"@babel/preset-react": "^7.10.4",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@rails/webpacker": "5.4.4",
"axios": "^0.21.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"bootstrap": "^4.5.0",
"classnames": "^2.5.1",
"codemirror": "^5.57.0",
"easy-peasy": "^6.0.4",
"file-saver": "^2.0.5",
"humps": "^2.0.1",
"i18n-js": "^4.4.3",
"is-valid-json": "^1.0.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"mime": "^2.5.0",
"moment": "^2.29.1",
"pluralize": "^8.0.0",
"prop-types": "^15.7.2",
"query-string": "^6.13.7",
"react": "^17.0.2",
"react-animations": "^1.0.0",
"react-codemirror2": "^7.2.1",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-modal": "^3.11.2",
"react-multi-select-component": "^4.3.4",
"react-redux": "^7.2.1",
"react-redux-toastr": "^8.0.0",
"react-router-dom": "^5.2.0",
"react-tabs": "^3.1.1",
"redux": "^4.0.5",
"resolve-url-loader": "^5.0.0",
"styled-components": "^5.2.0",
"validator": "^13.1.1",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"version": "0.1.0",
"devDependencies": {
"@babel/plugin-transform-private-methods": "^7.23.3",
"@babel/plugin-transform-private-property-in-object": "^7.23.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-unused-imports": "^3.0.0",
"postcss": "^8.4.35",
"prettier": "2.1.1",
"stylelint": "^15.10.2",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-order": "^6.0.4",
"webpack-dev-server": "^3"
},
"engines": {
"node": ">=16.20.0",
"yarn": ">=1.0.1"
},
"scripts": {
"lint": "yarn lint:js && yarn lint:scss",
"lint:js": "prettier -c 'app/javascript/**/*.{js,jsx}' && eslint --ext .js --ext .jsx app/javascript",
"lint:js:fix": "prettier -w 'app/javascript/**/*.{js,jsx}' && eslint --ext .js,.jsx app/javascript --quiet --fix",
"lint:scss": "prettier -c 'app/assets/stylesheets/**/*.{css,scss}' && stylelint 'app/assets/stylesheets/**/*.{css,scss}' --quiet",
"lint:scss:fix": "prettier -w 'app/assets/stylesheets/**/*.{css,scss}' && stylelint 'app/assets/stylesheets/**/*.{css,scss}' --quiet --fix"
}
}