-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.56 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
{
"name": "minimal-react-router",
"version": "1.0.2",
"description": "A lightweight router for React.",
"main": "out/minimalReactRouter.js",
"license": "MIT",
"files": [
"out/**"
],
"scripts": {
"build": "yarn build:types && yarn build:js",
"build:js": "babel src --out-dir out --extensions \".js,.ts,.tsx\" --source-maps inline",
"build:types": "tsc --emitDeclarationOnly",
"lint": "eslint \"src\" --ext \".js,.ts,.tsx\"",
"prepublishOnly": "yarn build && yarn lint && yarn test",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.3",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-typescript": "^7.4.0",
"@types/jest": "^24.0.11",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"babel-jest": "^24.7.1",
"babel-plugin-dynamic-import-node": "^2.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"jest": "^24.7.1",
"jest-fetch-mock": "^2.1.2",
"prettier": "^1.17.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-testing-library": "^6.1.2",
"typescript": "^3.4.4"
},
"peerDependencies": {
"react": ">=16.8.0"
}
}