-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.03 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
{
"name": "atomistic-software",
"homepage": "https://atomistic.software",
"author": {
"name": "Leopold Talirz",
"url": "https://ltalirz.github.io"
},
"repository": {
"type": "git",
"url": "https://github.com/ltalirz/atomistic-software"
},
"private": true,
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^6.0.0",
"@mui/material": "^6.0.0",
"@nivo/line": "^0.99.0",
"@tanstack/react-table": "^8.13.0",
"material-react-table": "^3.0.0",
"prettier": "^2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.1.0",
"react-router-dom": "^6.26.2",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"eslint": "^9.9.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.2",
"@vitejs/plugin-react": "^4.3.1",
"eslint-config-prettier": "^8.3.0",
"gh-pages": "^6.3.0",
"husky": "^7.0.4",
"jsdom": "^26.1.0",
"lint-staged": "^11.0.0",
"source-map-explorer": "^2.5.1",
"vite": "^5.4.0",
"vitest": "^2.0.5"
},
"scripts": {
"start": "vite",
"build": "vite build && mkdir -p dist && echo 'atomistic.software' > ./dist/CNAME",
"preview": "vite preview",
"deploy": "gh-pages -d dist",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"analyze": "source-map-explorer 'dist/assets/*.js'",
"prepare": "husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{css,scss,md,json,yml,yaml}": [
"prettier --write"
]
},
"engines": {
"node": ">=20",
"npm": ">=9"
}
}