-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.74 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
{
"name": "razzle-weather-app",
"version": "4.0.2",
"license": "MIT",
"scripts": {
"start:tsc": "tsc -b -w --preserveWatchOutput",
"start": "concurrently \"yarn start:tsc\" \"razzle start\"",
"build": "tsc -b && razzle build",
"test": "razzle test --env=jsdom --verbose",
"start:prod": "NODE_ENV=production node build/server.js",
"lint": "eslint . --ext .tsx --ext .ts",
"typecheck": "tsc --noEmit",
"deploy": "yarn build --noninteractive && vercel -e PORT=3000 --prod"
},
"dependencies": {
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@reduxjs/toolkit": "^1.5.0",
"axios": "^0.21.1",
"express": "^4.17.1",
"react": "^17.0.1",
"react-app-polyfill": "^2.0.0",
"react-dom": "^17.0.1",
"react-redux": "^7.2.3",
"react-router-dom": "^5.1.2"
},
"devDependencies": {
"@testing-library/dom": "^7.29.4",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.3",
"@testing-library/user-event": "^10.1.0",
"@types/express": "^4.17.6",
"@types/jest": "^26.0.22",
"@types/node": "^13.13.2",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-router-dom": "^5.1.4",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"babel-preset-razzle": "4.0.2",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"eslint": "^7.22.0",
"eslint-plugin-react": "^7.22.0",
"html-webpack-plugin": "^4.5.2",
"mini-css-extract-plugin": "^0.9.0",
"razzle": "^4.0.2",
"razzle-dev-utils": "^4.0.2",
"ts-jest": "^26.5.4",
"typescript": "^4.0.3",
"webpack": "^4.44.1",
"webpack-dev-server": "^3.11.2"
}
}