-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2 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
{
"name": "@ematipico/react-calendar",
"version": "1.0.0",
"author": "Emanuele Stoppa <[email protected]>",
"main": "dist/index.js",
"module": "dist/react-calendar.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"lint:fix": "eslint --ext tsx,ts ./src ./test --fix",
"lint:es": "eslint --ext tsx,ts ./src ./test",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build:css": "postcss ./src/index.css -d dist/",
"start": "tsdx watch",
"build": "tsdx build --tsconfig tsconfig.prod.json --entry ./src/index.tsx && yarn build:css",
"test": "tsdx test --env=jsdom",
"lint": "tsdx lint && yarn lint:es"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ematipico/react-calendar.git"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"homepage": "https://github.com/ematipico/react-calendar#readme",
"devDependencies": {
"@storybook/addon-actions": "^5.2.8",
"@storybook/addon-docs": "^5.2.8",
"@storybook/addon-links": "^5.2.8",
"@storybook/addons": "^5.2.8",
"@storybook/react": "^5.2.8",
"@testing-library/react": "^9.3.2",
"@types/classnames": "^2.2.9",
"@types/jest": "^24.0.23",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"autoprefixer": "^9.7.3",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"postcss": "^7.0.23",
"postcss-cli": "^6.1.3",
"postcss-import": "^12.0.1",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-docgen-typescript-loader": "^3.6.0",
"react-dom": "^16.12.0",
"tsdx": "^0.11.0",
"tslib": "^1.10.0",
"typescript": "^3.7.2"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"dependencies": {
"classnames": "^2.2.6",
"date-fns": "^2.8.1",
"normalize.css": "^8.0.1"
}
}