-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.15 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
85
86
87
88
89
90
91
92
{
"name": "test-oauth",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"dev": "concurrently --kill-others --names \" CSS \",\" JS \",\" SERVER \" -c yellow,blue,green \"npm:fe:css:build\" \"npm:fe:js:build\" \"npm:start-local\"",
"start-local": "node server/server.js",
"fe:css:build:only": "tailwindcss -i ./public/css/steerco-reporting.css -o ./public/dist/production.css --minify",
"fe:css:build": "npm run fe:css:build:only -- --watch",
"fe:js:build:only": "rollup -c --sourcemap",
"fe:js:build": "npm run fe:js:build:only -- -w",
"test": "vitest --watch=false --exclude '**/playwright'",
"test:e2e": "npx playwright test",
"test:watch": "vitest --exclude '**/playwright'",
"typecheck": "tsc",
"prepare": "husky",
"create:atlassian-connect": "tsx ./scripts/atlassian-connect/index.ts",
"build": "npm run fe:css:build:only && npm run fe:js:build:only"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@atlaskit/badge": "^16.4.3",
"@atlaskit/button": "^20.2.1",
"@atlaskit/css-reset": "^6.11.1",
"@atlaskit/dropdown-menu": "^12.22.3",
"@atlaskit/ds-lib": "^2.6.0",
"@atlaskit/dynamic-table": "^16.1.1",
"@atlaskit/flag": "^15.8.3",
"@atlaskit/form": "^10.5.4",
"@atlaskit/heading": "^2.4.6",
"@atlaskit/icon": "^22.20.1",
"@atlaskit/inline-edit": "^13.7.8",
"@atlaskit/link": "^1.2.6",
"@atlaskit/modal-dialog": "^12.17.10",
"@atlaskit/primitives": "^12.2.2",
"@atlaskit/section-message": "^6.7.0",
"@atlaskit/select": "^17.19.3",
"@atlaskit/spinner": "^16.3.2",
"@atlaskit/textfield": "^6.5.2",
"@atlaskit/toggle": "^13.4.4",
"@atlaskit/tokens": "^2.0.0",
"@atlaskit/tooltip": "^18.8.3",
"@rollup/plugin-babel": "^6.0.4",
"@tailwindcss/container-queries": "^0.1.1",
"@tanstack/react-query": "^5.56.2",
"axios": "^1.1.2",
"classnames": "^2.5.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"oauth": "^0.10.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-hook-form": "^7.53.0",
"undici": "^6.19.5",
"undici-types": "^6.19.5",
"uuid": "^11.0.3"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@babel/preset-react": "^7.25.7",
"@playwright/test": "^1.47.2",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.10",
"@types/semver": "^7.5.8",
"commander": "^12.1.0",
"concurrently": "^9.0.1",
"fsevents": "^2.3.3",
"husky": "^9.1.4",
"jsdom": "^24.1.0",
"jstat": "^1.9.6",
"live-server": "^1.2.2",
"rollup": "npm:@rollup/wasm-node@^4.2.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"semver": "^7.6.3",
"tailwindcss": "^3.4.13",
"tsx": "^4.19.1",
"typescript": "^5.5.4",
"vitest": "^1.6.0"
}
}