forked from dracor-org/einakter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.02 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
93
94
95
96
97
98
{
"name": "einakter",
"version": "1.2.1",
"private": true,
"dependencies": {
"@craco/craco": "^6.4.5",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@headlessui/react": "^1.7.2",
"@lingui/detect-locale": "^3.14.0",
"@lingui/react": "^3.14.0",
"@tailwindcss/typography": "^0.5.7",
"@tanstack/react-table": "^8.5.13",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^29.5.5",
"@types/leaflet": "^1.5.23",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.0.0",
"@types/react-router-dom": "^5.3.3",
"js-yaml": "4.1.0",
"leaflet": "^1.7.1",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-leaflet": "^4.1.0",
"react-markdown": "^8.0.3",
"react-router-dom": "^6.4.1",
"react-scripts": "5.0.1",
"sass": "^1.55.0",
"tailwindcss": "^3.1.8",
"tailwindcss-classnames": "^2.2.5",
"typescript": "5.1.6",
"web-vitals": "^2.1.0"
},
"scripts": {
"csv": "ts-node -O '{\"isolatedModules\":false,\"module\":\"CommonJS\"}' yml2csv.ts && cp ./data.csv ./public/",
"json": "ts-node -O '{\"isolatedModules\":false,\"module\":\"CommonJS\"}' yml2json.ts && cp ./data.json ./src/ && cp ./data.json ./public/",
"beacon": "ts-node -O '{\"isolatedModules\":false,\"module\":\"CommonJS\"}' yml2beacon.ts",
"authors": "ts-node -O '{\"isolatedModules\":false,\"module\":\"CommonJS\"}' fetch-authors.ts",
"locations": "ts-node -O '{\"isolatedModules\":false,\"module\":\"CommonJS\"}' fetch-locations.ts",
"start": "yarn compile && yarn csv && yarn json && craco start",
"build": "yarn compile && yarn csv && yarn json && yarn beacon && craco build",
"test": "yarn compile && yarn csv && yarn json && craco test",
"extract": "lingui extract",
"compile": "lingui compile",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"parserOptions": {
"babelOptions": {
"presets": [
[
"babel-preset-react-app",
false
],
"babel-preset-react-app/prod"
]
}
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!axios)"
]
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@lingui/cli": "^3.14.0",
"@lingui/macro": "^3.14.0",
"@mdx-js/loader": "^2.1.3",
"@types/js-yaml": "^4.0.5",
"axios": "^1.6.0",
"ts-node": "^10.9.1"
}
}