This repository has been archived by the owner on Apr 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.49 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
{
"name": "react-training",
"version": "0.0.1",
"description": "Repository for testing purposes only.",
"main": "index.js",
"repository": "https://github.com/mszmida/react-training.git",
"author": "Maciej Szmida <[email protected]>",
"license": "MIT",
"scripts": {
"srv:build": "babel server/src/ --out-dir server/build/ --ignore node_modules",
"srv:start": "node server/build/index.js",
"app:build:dev": "webpack --config webpack.dev.js",
"app:build:prod": "webpack --config webpack.prod.js",
"app:start:dev": "webpack-dev-server --config webpack.dev.js",
"test": "jest"
},
"dependencies": {
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-redux": "^5.0.7",
"redux": "^4.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"classnames": "^2.2.5",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"flexboxgrid-sass": "^8.0.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.4.3",
"node-sass": "^4.9.0",
"normalize-scss": "^7.0.1",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3",
"webpack-merge": "^4.1.2"
}
}