-
Notifications
You must be signed in to change notification settings - Fork 104
/
package.json
56 lines (56 loc) · 1.29 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
51
52
53
54
55
56
{
"name": "react-snapshot",
"version": "1.3.0",
"description": "",
"main": "lib/index.js",
"repository": "geelen/react-snapshot",
"bin": {
"react-snapshot": "./bin/react-snapshot.js"
},
"scripts": {
"build": "babel --out-dir lib src",
"build:watch": "npm run build -- --watch",
"prepublish": "rm -rf lib/* && npm run build"
},
"dependencies": {
"connect-history-api-fallback": "^1.3.0",
"express": "^4.15.2",
"glob-to-regexp": "^0.3.0",
"http-proxy-middleware": "^0.17.4",
"jsdom": "^9.4.5",
"mkdirp": "^0.5.1",
"safe-commander": "^2.11.1"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.13.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.13.2",
"babel-preset-es2016": "^6.11.3",
"react": "^15.3.0",
"react-dom": "^15.3.0"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0",
"react-dom": "^15.3.0 || ^16.0.0"
},
"babel": {
"presets": [
"es2015",
"es2016"
],
"plugins": [
"add-module-exports"
]
},
"keywords": [
"react",
"create-react-app",
"snapshot",
"static-site-generator",
"jsdom"
],
"author": "Glen Maddern",
"license": "ISC",
"homepage": "https://github.com/geelen/react-snapshot"
}