-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.39 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.39 KB
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
{
"name": "react-ssr-cv",
"scripts": {
"build": "webpack",
"start": "node server.bundle.js",
"start:dev": "NODE_ENV=development nodemon -w ./ -e \"ts,js,html,tsx,jsx,css\" index.ts",
"kill": "sudo kill -9 $(sudo lsof -t -i:3030)",
"push": "git add . && git commit -m \"`echo \"Auto commit by $(git config user.name) at $(date +%Y-%m-%dT%H:%M%z)\"`\"&& git push",
"herokuPush": "git add . && git commit -m \"`echo \"Auto commit by $(git config user.name) at $(date +%Y-%m-%dT%H:%M%z)\"`\" &&git push heroku main:master"
},
"version": "1.0.0",
"dependencies": {
"@babel/core": "7.x.x",
"@babel/preset-env": "7.x.x",
"@babel/preset-react": "7.x.x",
"@babel/preset-typescript": "^7.16.7",
"@types/express": "^4.17.13",
"@types/node": "^17.0.23",
"@types/react": "^18.0.0",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-middleware": "^5.3.0",
"babel-loader": "8.x.x",
"css-loader": "2.1.x",
"express": "4.16.x",
"file-loader": "^4.0.0",
"firebase": "^8.2.3",
"i18next": "^21.6.15",
"react": "16.x.x",
"react-dom": "16.x.x",
"react-i18next": "^11.16.5",
"rxjs": "^7.5.5",
"style-loader": "0.x.x",
"url-loader": "^2.0.0",
"webpack": "4.x.x",
"webpack-dev-middleware": "3.7.x",
"webpack-node-externals": "^3.0.0"
},
"devDependencies": {
"nodemon": "^2.0.15",
"webpack-cli": "^4.9.2"
}
}