-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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
{
"name": "react-blog",
"version": "0.1.1",
"main": "index.js",
"description": "Static react blog with markdown files",
"author": "Agata Kucharska",
"license": "ISC",
"dependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"html-webpack-plugin": "^2.28.0",
"normalize.css": "^5.0.0",
"react": "^15.3.2",
"react-css-modules": "^4.1.0",
"react-dom": "^15.3.2",
"react-router-dom": "^4.0.0-beta.8",
"webpack": "^2.2.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"css-loader": "^0.26.4",
"extract-text-webpack-plugin": "^2.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^19.0.2",
"node-sass": "^4.5.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-test-renderer": "^15.4.2",
"sass-loader": "^6.0.3",
"webpack-dev-server": "^1.16.2"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less|scss)$": "identity-obj-proxy"
}
},
"scripts": {
"build": "webpack -p",
"start": "webpack-dev-server --hot",
"test": "jest"
},
"homepage": "https://github.com/akucharska/react-blog#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/akucharska/react-blog.git"
},
"bugs": {
"url": "https://github.com/akucharska/react-blog/issues"
}
}