-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 3.09 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
76
77
78
79
80
81
82
83
84
{
"name": "studio-ui",
"private": true,
"version": "1.18.0-0",
"type": "module",
"description": "The Studio UI for CHILI GraFx",
"main": "src/main.tsx",
"repository": "https://github.com/chili-publish/studio-ui",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && npm run build:iife && npm run build:module",
"build:iife": "OUTPUT_FORMAT=iife vite build",
"build:module": "OUTPUT_FORMAT=module vite build",
"preview": "vite preview",
"testw": "jest --watch --silent",
"test": "jest",
"lint": "eslint --fix \"./src/**/*.{js,jsx,ts,tsx,json}\"",
"ci-lint": "eslint \"./src/**/*.{js,jsx,ts,tsx,json}\"",
"format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"postinstall": "node ./node_modules/husky/lib/bin install",
"format-staged": "pretty-quick --staged",
"cover": "jest --coverage",
"make-badges": "node createCoverageBadge.cjs",
"validate-licenses": "node validate_licenses.cjs",
"validate-versions": "node validate_versions.cjs"
},
"dependencies": {
"@chili-publish/grafx-shared-components": "^0.85.9",
"@chili-publish/studio-sdk": "^1.17.1",
"axios": "^1.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.11",
"@babel/preset-env": "^7.25.3"
},
"engines": {
"node": ">=20.0.0 <21.0.0"
},
"devDependencies": {
"@auth0/auth0-spa-js": "^2.1.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.2",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@vitejs/plugin-react-swc": "^3.3.2",
"eslint": "^8.42.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-junit": "^16.0.0",
"jest-mock-extended": "^3.0.4",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"react-select-event": "^5.5.1",
"ts-jest": "^29.1.0",
"typescript": "*",
"vite": "^4.3.9",
"vite-plugin-environment": "^1.1.3",
"resize-observer-polyfill": "^1.5.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run format-staged"
}
}
}