-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.07 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.07 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
{
"version": "8.1.3",
"devDependencies": {
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.18.0",
"concurrently": "^7.1.0",
"dotenv": "^16.4.5",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-no-relative-import-paths": "^1.3.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"execa": "^4.0.2",
"generate-changelog": "^1.8.0",
"gitops-secrets": "^0.0.5",
"lint-staged": "^15.2.8",
"prettier": "^2.0.5",
"prettier-eslint-cli": "^5.0.0",
"typescript-eslint": "^8.0.1-alpha.4"
},
"scripts": {
"start": "node scripts/start-dev.js",
"dev": "node scripts/start-dev.js",
"build": "node scripts/build.js",
"format": "find . -name \"*.js\" | grep -v node_modules | grep -v build | xargs prettier --write",
"format:log": "find . -name \"*.js\" | grep -v node_modules | grep -v build | xargs prettier",
"clean:git": "cd web-react-ts && rm -f ./.git/index.lock && cd ../api && rm -f ./.git/index.lock && cd .. && rm -f ./.git/index.lock",
"release:major": "npm run clean:git && node scripts/release.js major",
"release:minor": "npm run clean:git && node scripts/release.js minor",
"release:patch": "npm run clean:git && node scripts/release.js patch",
"aggregate-bacenta": "node ./api/src/scripts/run-bacenta-aggregation.js",
"aggregate-bacenta:help": "node ./api/src/scripts/run-bacenta-aggregation.js --help"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --cache --fix --max-warnings=0"
]
},
"eslintIgnore": [
"*.test.ts",
"*.test.tsx"
],
"repository": {
"type": "git",
"url": "git://github.com/firstlovecenter/fl-admin-portal.git"
},
"license": "Apache-2.0"
}