-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.86 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.86 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
94
95
96
97
98
99
100
101
102
{
"name": "aesirx-content-app",
"version": "1.1.0",
"license": "GPL-3.0-only",
"author": "AesirX",
"main": "dist/index.js",
"module": "dist/index.js",
"repository": "https://github.com/aesirxio/content-app",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"aesirx-dam-app": "^1.3.0",
"aesirx-lib": "^1.10.0",
"aesirx-uikit": "^1.1.0",
"immutability-helper": "^3.1.1",
"mobx": "^6.9.0",
"mobx-react": "^7.6.0",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-bootstrap": "^2.7.4",
"react-dom": "^18.2.0",
"react-i18next": "^12.3.1",
"react-router-dom": "^5.2.0",
"react-table": "^7.6.2",
"recharts": "^2.6.2",
"simple-react-validator": "^1.6.0",
"web-vitals": "^3.3.1"
},
"scripts": {
"start": "yarn run build && serve -s build",
"build": "craco build && react-inject-env set",
"test": "react-scripts test",
"dev": "craco start",
"lint": "eslint --fix \"src/**/\"",
"lint:check": "eslint \"src/**/\"",
"lint:nowarns": "eslint --quiet \"src/**/\"",
"format:check": "prettier --check 'src/**/*.{js,jsx,ts,tsx}'",
"format:write": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"build:lib": "NODE_ENV=production tsup",
"dev:lib": "NODE_ENV=development tsup --watch --onSuccess 'yalc push --no-scripts'",
"prepublishOnly": "yarn build:lib"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/eslint-parser": "^7.24",
"@babel/plugin-transform-modules-umd": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.17",
"@craco/craco": "^7.1.0",
"@iconify/react": "^4.0.0",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"esbuild-plugin-inline-image": "^0.0.9",
"esbuild-sass-plugin": "^2.9.0",
"esbuild-scss-modules-plugin": "^1.1.1",
"eslint": "^8.17",
"git-revision-webpack-plugin": "^5.0.0",
"postcss": "^8.4.31",
"prettier": "^2.8.4",
"react-inject-env": "^2.1.0",
"react-scripts": "^5.0.1",
"sass": "^1.52",
"serve": "^13.0.2",
"tsup": "^6.7.0"
},
"resolutions": {
"bootstrap": "5.2.3",
"react": "^18",
"react-dom": "^18",
"tough-cookie": "^4",
"semver": "^7",
"jsdom": "^16",
"nth-check": "^2",
"postcss": "^8",
"json5": "^2",
"minimatch": "^5"
},
"files": [
"dist",
"public/assets/images"
]
}