forked from NiGhTTraX/ts-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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
{
"name": "@nighttrax/cra-example",
"description": "Example of using create-react-app in a TS monorepo",
"private": true,
"version": "1.0.0",
"dependencies": {
"@nighttrax/foo": "*",
"@nighttrax/components": "*",
"react": "~18.2.0",
"react-dom": "~18.2.0"
},
"devDependencies": {
"@types/node": "~18.13.0",
"@babel/core": "~7.20.0",
"@babel/plugin-syntax-flow": "~7.18.0",
"@babel/plugin-transform-react-jsx": "~7.20.0",
"@craco/craco": "~7.0.0",
"@types/express": "~4.17.13",
"@types/jest": "~29.4.0",
"@types/react": "~18.0.0",
"@types/react-dom": "~18.0.0",
"autoprefixer": "~10.4.0",
"cross-env": "~7.0.2",
"jest": "~29.4.0",
"postcss": "~8.4.13",
"react-scripts": "~5.0.0",
"rimraf": "~4.1.0",
"ts-jest": "~29.0.0",
"tsconfig-paths-webpack-plugin": "~4.0.0",
"typescript": "~4.9.0",
"ts-node": "~10.9.1"
},
"scripts": {
"clean": "rimraf dist",
"start": "cross-env SKIP_PREFLIGHT_CHECK=true craco start",
"build": "cross-env SKIP_PREFLIGHT_CHECK=true craco build",
"test": "cross-env SKIP_PREFLIGHT_CHECK=true craco test --watchAll=false"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}