generated from Eik-S/react-typescript-emotion-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.57 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
{
"name": "cm-stats",
"version": "0.1.0",
"type": "module",
"dependencies": {
"@aws-sdk/client-s3": "^3.600.0",
"@aws-sdk/lib-storage": "^3.600.0",
"@emotion/react": "^11.11.4",
"axios": "^1.7.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@emotion/babel-preset-css-prop": "^11.11.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"esbuild": "^0.23.0",
"eslint": "^8.57.0",
"eslint-config-react-app": "^7.0.1",
"ts-node": "^10.9.2",
"tsx": "^4.15.7",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-node": "^1.6.0",
"vite-plugin-eslint": "^1.8.1"
},
"scripts": {
"build": "vite build",
"start": "vite serve",
"test": "react-app-rewired test",
"start:crawler": "tsx ./cm-crawler/index.ts",
"clean": "rm -rf dist",
"help": "ts-node --help",
"package:crawler": "npm run clean && vite-node scripts/build-lambda.ts && cd dist && zip -r ./cm-crawler.zip ./cm-crawler/index.js && cd .."
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"volta": {
"node": "20.11.1"
}
}