generated from moxystudio/react-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 2.36 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
76
77
{
"name": "@moxy/react-navigation",
"version": "1.1.0",
"description": "Set of react components, hooks and providers to easily kickoff a navigation environment in web projects.",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"lib",
"es",
"dist"
],
"homepage": "https://github.com/moxystudio/react-navigation#readme",
"author": "Rui Monteiro <[email protected]>",
"license": "MIT",
"keywords": [
"react",
"navigation",
"drawer",
"navbar",
"header"
],
"repository": {
"type": "git",
"url": "git+https://github.com/moxystudio/react-navigation.git"
},
"bugs": {
"url": "https://github.com/moxystudio/react-navigation/issues"
},
"scripts": {
"dev": "onchange -i -k \"src\" -- npm run build",
"build:css": "rimraf dist && postcss src/styles/**/*.css --base src/styles --dir dist",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src -d lib --delete-dir-on-start",
"build:es": "cross-env BABEL_ENV=es babel src -d es --delete-dir-on-start",
"build": "npm run build:commonjs && npm run build:es && npm run build:css",
"test": "jest",
"lint": "eslint --ignore-path .gitignore .",
"prerelease": "npm t && npm run lint && npm run build",
"release": "standard-version",
"postrelease": "git push --follow-tags origin HEAD && npm publish"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"dependencies": {
"body-scroll-lock": "^3.0.3",
"classnames": "^2.2.6",
"hoist-non-react-statics": "^3.3.2",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@commitlint/config-conventional": "^8.0.0",
"@moxy/babel-preset": "^3.2.1",
"@moxy/eslint-config-babel": "^12.0.0",
"@moxy/eslint-config-base": "^12.0.0",
"@moxy/eslint-config-jest": "^12.0.0",
"@moxy/eslint-config-react": "^12.0.0",
"@moxy/jest-config": "^4.0.1",
"@moxy/postcss-preset": "^4.4.2",
"@testing-library/react": "^10.0.2",
"commitlint": "^8.3.5",
"cross-env": "^7.0.2",
"eslint": "^6.0.0",
"husky": "^4.0.10",
"jest": "^25.2.6",
"lint-staged": "^10.0.2",
"lodash": "^4.17.15",
"onchange": "^7.0.1",
"postcss-cli": "^7.1.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "^3.0.2",
"standard-version": "^7.0.0"
}
}