forked from t3-innovation-network/desm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.19 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.19 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "desm",
"private": true,
"type": "module",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@popperjs/core": "^2.11.8",
"autoprefixer": "^10.4.20",
"axios": "^1.7.9",
"bootstrap": "^5.3.3",
"classnames": "^2.5.1",
"codemirror": "^5.57.0",
"cssnano": "^7.0.6",
"easy-peasy": "^6.0.5",
"esbuild": "^0.24.2",
"file-saver": "^2.0.5",
"humps": "^2.0.1",
"i18n-js": "^4.4.3",
"lodash": "^4.17.21",
"mime": "^4.0.6",
"moment": "^2.30.1",
"pluralize": "^8.0.0",
"postcss": "^8.5.1",
"postcss-cli": "^11.0.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^16.1.0",
"postcss-url": "^10.1.3",
"prop-types": "^15.8.1",
"query-string": "^9.1.1",
"react": "^18.3.1",
"react-bootstrap": "^2.10.9",
"react-codemirror2": "^8.0.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-modal": "^3.16.3",
"react-multi-select-component": "^4.3.4",
"react-redux": "^9.2.0",
"react-redux-toastr": "^8.0.0",
"react-responsive": "^10.0.0",
"react-router-dom": "^5.2.0",
"react-tabs": "^6.1.0",
"redux": "^5.0.1",
"rfs": "^10.0.0",
"sass": "^1.83.4",
"validator": "^13.12.0"
},
"version": "0.2.0",
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@playwright/test": "^1.51.0",
"@types/node": "^22.13.10",
"axe-html-reporter": "^2.2.11",
"dotenv": "^16.4.7",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-playwright": "^2.2.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-unused-imports": "^4.1.4",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"stylelint": "^16.13.2",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^37.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-order": "^6.0.4",
"stylelint-selector-bem-pattern": "^4.0.1"
},
"engines": {
"node": ">=22.13.0",
"yarn": ">=1.22"
},
"browserslist": [
"defaults"
],
"scripts": {
"build": "node esbuild.config.cjs",
"build:css:compile": "sass ./app/assets/stylesheets/application.bootstrap.scss:./app/assets/builds/application.css --load-path=node_modules",
"build:css:prefix": "postcss ./app/assets/builds/application.css --output=./app/assets/builds/application.css",
"build:css": "yarn build:css:compile && yarn build:css:prefix",
"lint": "eslint app/javascript && stylelint 'app/assets/stylesheets/**/*.{css,scss}' --quiet",
"lint:js": "eslint app/javascript",
"lint:js:fix": "prettier -w 'app/javascript/**/*.{js,ts,jsx}' && eslint app/javascript --quiet --fix",
"lint: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",
"watch:css": "nodemon --watch ./app/assets/stylesheets/ --ext scss --exec \"yarn build:css\""
}
}