-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.67 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "sbreact",
"version": "1.0.0",
"description": "Skillbox react course",
"main": "index.js",
"engines": {
"node": "14.x"
},
"scripts": {
"build:dev": "cross-env env NODE_ENV=development DOMAIN=http://localhost:3000 SECRET=NUYRbIcVy7K9tG7nYcog6f7UqACPiA CLIENT_ID=vneS-7rxQSk-hA webpack --config webpack.config.js",
"build:prod": "cross-env env NODE_ENV=production DOMAIN=http://localhost:3000 SECRET=NUYRbIcVy7K9tG7nYcog6f7UqACPiA CLIENT_ID=vneS-7rxQSk-hA webpack --config webpack.config.js",
"dev": "cross-env env NODE_ENV=development DOMAIN=http://localhost:3000 SECRET=NUYRbIcVy7K9tG7nYcog6f7UqACPiA CLIENT_ID=vneS-7rxQSk-hA node ./bin/dev.js",
"test": "test",
"start": "env DOMAIN=https://react-skillbox-test.herokuapp.com CLIENT_ID=Q4IGwQPn-8OCLg SECRET=JofR1bQsGhbnGvlotgC-wrTEjv-Xmg NODE_ENV=production node ./dist/server/server.js",
"build": "cross-env env DOMAIN=https://react-skillbox-test.herokuapp.com NODE_ENV=production CLIENT_ID=Q4IGwQPn-8OCLg SECRET=JofR1bQsGhbnGvlotgC-wrTEjv-Xmg webpack --config webpack.config.js"
},
"keywords": [
"React",
"Skillbox"
],
"author": "Dmitry Kashin <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/DmitriyKashin/skillboxreact"
},
"devDependencies": {
"@hot-loader/react-dom": "^17.0.0-rc.2",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.14",
"@types/react": "^16.9.51",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.12",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"express": "^4.17.1",
"html-webpack-plugin": "^4.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.5.0",
"less": "^3.12.2",
"less-loader": "^7.0.1",
"react-hot-loader": "^4.13.0",
"style-loader": "^1.3.0",
"ts-jest": "^26.4.1",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.11.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"@hot-loader/react-dom": "^17.0.0-rc.2",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.14",
"@types/react": "^16.9.51",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.12",
"@types/react-router-dom": "^5.1.7",
"axios": "^0.21.0",
"clean-webpack-plugin": "^3.0.0",
"compression": "^1.7.4",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"express": "^4.17.1",
"formik": "^2.2.6",
"helmet": "^4.4.1",
"html-webpack-plugin": "^4.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.5.0",
"less": "^3.12.2",
"less-loader": "^7.0.1",
"nodemon": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hook-form": "^6.14.2",
"react-hot-loader": "^4.13.0",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"style-loader": "^1.3.0",
"ts-jest": "^26.4.1",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.11.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-node-externals": "^2.5.2"
}
}