-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.41 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.41 KB
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
78
{
"name": "react-greeting",
"version": "1.0.4",
"description": "This is a simple component only just display 'Hello, foo'",
"keywords": ["react", "greeting", "hello, world"],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/lightsound/react-greeting.git"
},
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint -c ./.eslintrc.js 'lib/**/*.{ts,tsx}'",
"tsc": "tsc --noEmit",
"tsc:watch": "yarn tsc -- --watch",
"test": "jest",
"test:watch": "jest --watch",
"all-check": "yarn test && yarn lint && yarn tsc",
"dev": "webpack-dev-server --config webpack.config.js --progress --colors --open --mode=development",
"build": "rimraf demo_dist & webpack --progress --colors --mode=production",
"rollup": "rimraf dist & rollup -c"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.3.0",
"@babel/plugin-proposal-object-rest-spread": "7.3.2",
"@babel/preset-env": "7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "7.1.0",
"@types/jest": "^24.0.4",
"@types/react": "^16.8.3",
"@types/react-dom": "^16.8.1",
"@typescript-eslint/eslint-plugin": "^1.3.0",
"@typescript-eslint/parser": "^1.3.0",
"babel-jest": "^24.1.0",
"babel-loader": "8.0.5",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.0.1",
"fork-ts-checker-webpack-plugin": "0.5.2",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"prettier": "^1.16.4",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-testing-library": "^5.8.0",
"rimraf": "^2.6.3",
"rollup": "^1.1.2",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript2": "^0.19.2",
"terser-webpack-plugin": "^1.2.2",
"typescript": "3.3.3",
"webpack": "4.29.3",
"webpack-cli": "3.2.3",
"webpack-dev-server": "^3.1.14"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"husky": {
"hooks": {
"pre-commit": "yarn all-check",
"pre-push": "yarn all-check"
}
}
}