-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.31 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
{
"name": "croods-auth",
"version": "3.3.0",
"description": "Authentication made easy with Croods",
"author": "SeasonedSoftware",
"license": "MIT",
"repository": "SeasonedSoftware/croods-auth",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"lint": "node_modules/.bin/eslint --max-warnings 0 .",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"test": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"build": "npm run build:types && npm run build:js",
"build:js": "rollup -c",
"build:types": "tsc -p tsconfig.build.json",
"start": "rollup -c -w",
"prepare": "yarn run build",
"predeploy": "yarn build && cd example/ && yarn build && cd ../",
"deploy": "gh-pages -d example/build",
"release:login": "npm adduser",
"release": "npm version",
"postrelease": "npm publish && git push --tags && git push"
},
"peerDependencies": {
"croods": "2.1.3",
"lodash": "^4.17.14",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-use-form-state": "^0.10.4"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-react-jsx-development": "^7.12.17",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@seasonedsoftware/eslint-config": "^2.1.0",
"@types/axios": "^0.14.0",
"@types/lodash": "^4.14.136",
"@types/react": "^16.8.22",
"croods": "2.1.5",
"cross-env": "^5.2.0",
"gh-pages": "^2.0.1",
"lodash": "^4.17.14",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "^3.3.0",
"react-test-renderer": "^16.12.0",
"react-use-form-state": "^0.12.1",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-uglify": "^6.0.4",
"typescript": "^3.5.3"
},
"files": [
"dist"
]
}