-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "realworld-example-app-react",
"version": "0.0.1",
"description": "This is a medium.com clone, an example of a realworld app, for more details visit realworld.io",
"repository": "https://github.com/segmentationfaulter/realworld-example-app-react.git",
"author": "segmentationfaulter <muhammadsackib@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "webpack",
"start": "webpack-dev-server --open",
"test": "jest",
"t:watch": "jest --watch"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.2",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"react-testing-library": "^5.1.0",
"standard": "^12.0.1",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.7"
},
"dependencies": {
"@reach/router": "^1.2.1",
"axios": "^0.18.0",
"classnames": "^2.2.6",
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
"standard": {
"globals": [
"test",
"jest",
"expect",
"it",
"describe"
]
}
}