-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "frontful-resolver",
"version": "3.0.9",
"private": true,
"description": "State management and binding approach for component based applications with focus on universality, isomorphism, data (pre)fetching and routing",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/frontful/frontful-resolver.git"
},
"main": "./resolver/index.js",
"scripts": {
"build": "yarn test && babel-preset-frontful build",
"deploy": "yarn test && babel-preset-frontful deploy",
"test": "yarn test:eslint",
"test:eslint": "node ./node_modules/eslint/bin/eslint.js --max-warnings 0 ."
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"es6-error": "^4.0.2",
"frontful-utils": "3.x",
"mobx-react": "^5.2.3"
},
"peerDependencies": {
"frontful-model": "3.x",
"mobx": "4.x",
"react": "16.x",
"react-dom": "16.x"
},
"devDependencies": {
"babel-preset-frontful": "3.x",
"eslint-config-frontful": "3.x",
"frontful-model": "3.x",
"mobx": "4.x",
"react": "16.x",
"react-dom": "16.x"
}
}