-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.26 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
{
"name": "es6-guides-getting-started",
"version": "1.0.0",
"description": "jest setup",
"main": "index.js",
"scripts": {
"test": "jest --watch",
"build": "webpack --config webpack.config.js --mode=development",
"watch": "webpack --watch",
"start": "webpack-dev-server --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harryosmar/es6-guides-getting-started.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/harryosmar/es6-guides-getting-started/issues"
},
"homepage": "https://github.com/harryosmar/es6-guides-getting-started#readme",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.0.0",
"jest": "^24.8.0",
"normalize.css": "^8.0.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.0"
},
"dependencies": {
"lodash": "^4.17.11",
"moment": "^2.24.0",
"node-sass": "^4.12.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"redux": "^4.0.1"
}
}