-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.67 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "republic",
"version": "0.4.14",
"description": "Routing, forms, and actions for your React.",
"main": "./republic.js",
"bin": {
"republic": "dist/lib/bin/start.js"
},
"scripts": {
"prepare": "babel lib --out-dir dist/lib --ignore *.test.js",
"watch": "babel lib --out-dir dist/lib --watch --ignore *.test.js",
"test": "jest --notify"
},
"repository": {
"type": "git",
"url": "github.com/lukemorton/upcoming"
},
"author": "Luke Morton",
"license": "MIT",
"dependencies": {
"lodash.flowright": "^3.5.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"lodash.union": "^4.6.0",
"lodash.update": "^4.10.2",
"lodash.without": "^4.4.0",
"minimist": "^1.2.0",
"path-to-regexp": "^1.7.0",
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"body-parser": "^1.17.2",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"express": "^4.15.3",
"jest": "^21.2.1",
"jest-enzyme": "^4.0.1",
"next": "^4.0.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"sinon": "^3.0.0",
"supertest": "^3.0.0"
},
"peerDependencies": {
"body-parser": "^1.17.2",
"express": "^4.15.3",
"next": "^4.0.3"
},
"babel": {
"plugins": [
"transform-runtime"
],
"presets": [
"es2015",
"stage-2",
"react"
]
},
"jest": {
"setupTestFrameworkScriptFile": "./test/support/"
}
}