-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.19 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
72
73
74
{
"name": "react-entity-data",
"version": "0.2.6",
"description": "Composable components for form-inputs in React without tons of repeated logic",
"main": "lib/index.js",
"scripts": {
"start": "npm run storybook",
"storybook": "start-storybook -p 4002 -c storybook",
"compile": "babel src --out-dir lib",
"compile:watch": "babel --watch src --out-dir lib",
"test": "npm run test:eslint",
"test:eslint": "eslint . --ext js,jsx",
"test:jest": "jest",
"test:jest:watch": "jest --watch",
"clean": "rimraf lib",
"preversion": "npm run test & npm run compile",
"prepublish": "npm run compile",
"postpublish": "npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/henit/react-entity-data.git"
},
"author": "Henrik Haugberg <henrik.haugberg@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/henit/react-entity-data/issues"
},
"homepage": "https://github.com/henit/react-entity-data#readme",
"dependencies": {
"ajv": "^6.10.2",
"bem-cn": "^3.0.1",
"core-js": "^3.2.1",
"entity-state": "^0.1.9",
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2"
},
"devDependencies": {
"@babel/cli": "^7.6.3",
"@babel/core": "^7.6.3",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@sambego/storybook-state": "^1.3.6",
"@storybook/addon-actions": "^5.2.3",
"@storybook/addon-knobs": "^5.2.3",
"@storybook/react": "^5.2.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"eslint": "^6.5.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-react": "^7.16.0",
"file-loader": "^4.2.0",
"jest": "^24.9.0",
"node-sass": "^4.12.0",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"regenerator-runtime": "^0.13.3",
"rimraf": "^3.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0"
},
"jest": {
"verbose": true,
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/lib/"
]
}
}