-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.41 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
{
"name": "react-layers-stack",
"description": "Push and pop React view layers with transitions",
"version": "0.2.0",
"license": "MIT",
"author": "DAB0mB",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/dab0mb/react-layers-stack.git"
},
"scripts": {
"lint": "eslint src/.",
"typecheck": "tsc",
"bundle": "webpack --config webpack.config.js",
"build": "yarn lint && yarn typecheck && yarn bundle",
"prepublishOnly": "yarn build"
},
"peerDependencies": {
"react": ">=16.8"
},
"optionalDependencies": {
"@types/react": ">=16.8"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.4",
"@babel/plugin-proposal-optional-chaining": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-react": "^7.18.3",
"husky": "^4.2.1",
"lint-staged": "^10.0.7",
"raw-loader": "^4.0.2",
"typescript": "^4.0.3",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-node-externals": "^1.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"yarn eslint --fix"
]
},
"keywords": [
"react",
"navigation",
"animations"
]
}