-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.21 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": "portfolio",
"version": "1.0.0",
"description": "My Portfiolio",
"main": "index.js",
"scripts": {
"test": "jest",
"webpack": "webpack",
"webpack-watch": "webpack --watch",
"start:dev": "webpack-dev-server --live-reload=true --watch-content-base=true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rahulbaisla/portfolio.git"
},
"author": "Rahul Baisla <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/rahulbaisla/portfolio/issues"
},
"homepage": "https://github.com/rahulbaisla/portfolio#readme",
"dependencies": {
"local-web-server": "^2.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"webpack-dev-middleware": "^3.7.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.4.3",
"react-test-renderer": "^16.2.0",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.9.0"
},
"jest": {
"verbose": true,
"testURL": "http://127.0.0.1/"
}
}