This repository has been archived by the owner on Sep 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.55 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
57
58
{
"name": "react-snapshot-server",
"version": "0.2.1",
"description": "A zero-configuration server that serves server-rendered snapshots of Create React App",
"main": "lib/index.js",
"repository": "https://github.com/scrnhq/react-snapshot-server",
"author": "Robert van Steen",
"license": "MIT",
"engines": {
"node": ">=6"
},
"bin": {
"react-snapshot-server": "./bin/cli.js"
},
"scripts": {
"compile": "babel src -d lib",
"test": "jest --coverage --forceExit",
"test:watch": "jest --watch",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"eslintConfig": {
"extends": "react-app"
},
"dependencies": {
"args": "^2.3.0",
"fs-extra": "^2.0.0",
"fs-promise": "^2.0.0",
"jsdom": "^9.11.0",
"micro": "^7.0.6",
"mime-types": "^2.1.14",
"path-type": "^2.0.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"send": "^0.14.2"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^19.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2017": "^6.22.0",
"babel-preset-stage-3": "^6.22.0",
"coveralls": "^2.11.16",
"eslint": "^3.8.1",
"eslint-config-react-app": "^0.5.1",
"eslint-plugin-flowtype": "^2.21.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"jest": "^19.0.2",
"mock-fs": "^4.0.0",
"react-scripts": "0.9.0",
"request-promise": "^4.1.1",
"rewire": "^2.5.2",
"test-listen": "^1.0.1",
"tmp": "^0.0.31"
}
}