-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.16 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
75
{
"name": "@mile-hi-labs/react-data",
"version": "3.7.5",
"description": "A state management library for React and React Native applications.",
"homepage": "https://github.com/mile-hi-labs/react-data#readme",
"license": "MIT",
"main": "./lib/react-data.js",
"author": {
"name": "Eric Hubbell",
"email": "[email protected]",
"url": "https://github.com/ehubbell"
},
"repository": "https://github.com/mile-hi-labs/react-data.git",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"bugs": {
"url": "https://github.com/mile-hi-labs/react-data/issues"
},
"keywords": [
"react",
"react native",
"react data",
"react native data",
"react store",
"react native store",
"react adapters",
"react native adapters",
"react models",
"react native models",
"react serializers",
"react native serializers",
"react json api",
"react native json api",
"react component"
],
"scripts": {
"clean": "rimraf ./lib && rimraf ./releases",
"build": "webpack --env development",
"build:prod": "webpack --env production",
"preversion": "npm run clean",
"version": "npm run deploy",
"predeploy": "npm run build:prod",
"deploy": "npm publish",
"postdeploy": "npm run git",
"pregit": "git add .",
"git": "git push --tags",
"postgit": "npm run clean",
"format": "prettier --write src/**/*.jsx",
"lint": "eslint src/**/*.js[x]"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.12",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"babel-loader": "^8.2.2",
"compression-webpack-plugin": "^5.0.0",
"react": "^16.13.1",
"rimraf": "^3.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.2.1"
},
"dependencies": {
"cross-fetch": "^3.0.6",
"eslint": "^7.17.0",
"eslint-config-react-app": "^6.0.0",
"pluralize": "^8.0.0",
"prettier": "^2.2.1",
"uniqid": "^5.2.0"
}
}