generated from murbar/cra-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"name": "jacks-or-better",
"author": "Joel Bartlett (https://github.com/murbar)",
"repository": {
"type": "git",
"url": "https://github.com/murbar/jacks-or-better.git"
},
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.4.0",
"canvas-confetti": "^1.0.3",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-ga": "^3.3.1",
"react-router-dom": "^5.1.2",
"react-spring": "^9.5.2",
"styled-components": "^5.3.5",
"svgo": "2.8.0"
},
"scripts": {
"start": "vite",
"build": "npm run minsvg && tsc && vite build",
"serve": "vite preview",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"minsvg": "svgo -f ./src/images -r -q"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/node_modules/"
]
},
"devDependencies": {
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"@vitejs/plugin-react": "^2.1.0",
"source-map-explorer": "^2.2.2",
"typescript": "^4.6.4",
"vite": "^3.1.3",
"vite-plugin-svgr": "^2.2.1",
"vite-tsconfig-paths": "^3.5.0"
}
}