-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
35 lines (35 loc) · 977 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": "SSR",
"version": "1.0.0",
"description": "SSR в React приложении — это просто",
"scripts": {
"dev": " NODE_ENV=development npx webpack server",
"build:dev": " NODE_ENV=development npx webpack",
"build": " NODE_ENV=production npx webpack",
"start": "node scripts/start.js"
},
"author": "Zar Zakharov",
"license": "ISC",
"dependencies": {
"@hapi/hapi": "^20.2.1",
"@hapi/inert": "^6.0.4",
"classnames": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0"
},
"devDependencies": {
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.4.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.4.0",
"mini-css-extract-plugin": "^2.4.3",
"sass": "^1.43.2",
"sass-loader": "^12.2.0",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"webpack": "^5.59.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1"
}
}