-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.35 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.35 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
{
"name": "mutationmaker-frontend",
"description": "Mutation Maker application frontend package",
"version": "1.0.0",
"license": "GPL-3.0-or-later",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Merck/Mutation_Maker.git"
},
"bugs": {
"url": "https://github.com/Merck/Mutation_Maker/issues"
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"lint": "tslint --project tsconfig.json --format codeFrame",
"types": "tsc -p tsconfig.json --skipLibCheck"
},
"proxy": "http://localhost:8000",
"dependencies": {
"@ant-design/icons": "^4.8.3",
"@types/file-saver": "^2.0.1",
"@types/lodash": "^4.17.23",
"antd": "^4.24.15",
"axios": "^1.7.0",
"exceljs": "^4.4.0",
"feature-viewer": "file:./feature-viewer",
"file-saver": "^2.0.5",
"lodash": "^4.17.23",
"postcss": "^8.5.6",
"postcss-discard-comments": "^5.1.2",
"ramda": "^0.32.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.71.1",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4",
"readline": "^1.3.0",
"recompose": "^0.30.0",
"uuid": "^10.0.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/d3": "^7.4.3",
"@types/jest": "^29.5.0",
"@types/jquery": "^3.5.33",
"@types/node": "^20.0.0",
"@types/prop-types": "^15.7.3",
"@types/ramda": "^0.29.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@types/recompose": "^0.30.7",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^5.1.4",
"ajv": "^8.12.0",
"babel-plugin-import": "^1.13.8",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"tslint-react": "^5.0.0",
"typescript": "^5.7.3",
"vite": "^7.3.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"bracketSpacing": true,
"jsxBracketSameLine": true,
"singleQuote": true,
"trailingComma": "all"
}
}