This repository has been archived by the owner on Feb 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.69 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
{
"name": "@opensystemslab/planx-document-review",
"type": "module",
"version": "1.1.3",
"license": "OGL-UK-3.0",
"repository": {
"type": "git",
"url": "https://github.com/theopensystemslab/planx-document-review.git"
},
"files": [
"dist",
"types"
],
"module": "./dist/DocumentReview.js",
"main": "./dist/DocumentReview.cjs",
"types": "./types/DocumentReview.d.ts",
"exports": {
".": {
"import": "./dist/DocumentReview.js",
"require": "./dist/DocumentReview.cjs"
}
},
"scripts": {
"dev": "vite",
"test": "vitest --run --dir src",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"ci": "pnpm lint && pnpm test && pnpm build",
"build": "rimraf ./dist ./types && tsc && vite build"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@lit-labs/ssr": "^2.2.3",
"@mui/material": "^5.10.16",
"@rollup/plugin-commonjs": "^23.0.3",
"lodash.startcase": "^4.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/plugin-syntax-flow": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@types/lodash.startcase": "^4.4.7",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@vitejs/plugin-react": "^2.2.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vitest": "^0.25.3"
},
"engines": {
"node": "^16",
"pnpm": "^7.8.0"
}
}