-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.17 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
70
71
{
"name": "next-mobx-wrapper",
"version": "1.0.0",
"description": "MobX wrapper for Next.js",
"keywords": [
"isomorphic",
"mobx",
"mobx-react",
"nextjs",
"react"
],
"main": "lib/index.js",
"scripts": {
"babel": "babel --ignore 'src/*.spec.js' --out-dir lib src",
"build": "npm run clean && npm run babel",
"clean": "rimraf lib",
"next": "next",
"next:export": "next export",
"next:build": "next build",
"next:start": "next start",
"prepublishOnly": "npm run build && npm test",
"start": "npm-run-all -p watch next",
"test": "NODE_ENV=test jest",
"watch": "npm run babel -- --watch"
},
"author": "Michael S. Bradley, Jr.",
"dependencies": {
"@babel/runtime": "^7.0.0-beta.42",
"dedent": "^0.7.0"
},
"devDependencies": {
"@babel/cli": "7.0.0-beta.42",
"@babel/core": "7.0.0-beta.42",
"@babel/plugin-transform-runtime": "7.0.0-beta.42",
"@types/jest": "23.0.0",
"@types/jest-environment-puppeteer": "2.2.0",
"@types/puppeteer": "1.3.3",
"ajv": "6.5.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.0.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.5",
"jest": "23.1.0",
"jest-environment-node": "22.4.3",
"jest-puppeteer": "3.0.1",
"mobx": "5.0.0",
"mobx-react": "5.2.2",
"next": "6.0.3",
"npm-run-all": "4.1.3",
"puppeteer": "1.5.0",
"react": "16.4.0",
"react-dom": "16.4.0",
"react-test-renderer": "16.4.0",
"rimraf": "2.6.2"
},
"peerDependencies": {
"mobx": "*",
"mobx-react": "*",
"next": ">=6.0.0",
"react": "*"
},
"repository": {
"type": "git",
"url": "git://github.com/michaelsbradleyjr/next-mobx-wrapper.git"
},
"bugs": {
"url": "https://github.com/michaelsbradleyjr/next-mobx-wrapper/issues"
},
"homepage": "https://github.com/michaelsbradleyjr/next-mobx-wrapper",
"license": "MIT"
}