-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "truefit-react-utils",
"version": "0.0.15",
"description": "a handy set of utility classes and functions for react apps",
"main": "lib/index.js",
"scripts": {
"start": "nodemon src/index.js --exec babel-node",
"compile": "node tools/build.js",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TrueFit/react-utils.git"
},
"author": "Josh Gretz",
"license": "MIT",
"bugs": {
"url": "https://github.com/TrueFit/react-utils/issues"
},
"homepage": "https://github.com/TrueFit/react-utils#readme",
"dependencies": {
"axios": "^0.18.0",
"deep-equal": "^1.0.1",
"lodash": "^4.17.11"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"eslint": "^5.15.3",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-react": "^7.12.4",
"nodemon": "^1.18.10",
"shelljs": "^0.8.3"
}
}