-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 963 Bytes
/
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
{
"name": "runtimesharks.com",
"version": "1.0.0",
"license": "UNLICENSED",
"scripts": {
"start": "razzle start",
"build": "razzle build",
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js",
"deploy": "yarn build && yarn start:prod"
},
"dependencies": {
"core-js": "^3.9.1",
"express": "^4.17.1",
"razzle": "^3.4.5",
"razzle-plugin-typescript": "^3.4.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-router-dom": "^5.2.0",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^14.14.37",
"@types/react-dom": "^17.0.3",
"@types/react-helmet": "^6.1.0",
"@types/react-router-dom": "^5.1.7",
"@types/styled-components": "^5.1.9",
"@types/webpack-env": "^1.16.0",
"tslint": "^6.1.3",
"typescript": "^4.2.3",
"webpack": "^5.28.0"
}
}