This repository has been archived by the owner on Jun 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
140 lines (140 loc) · 4.53 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "simple-react-calendar",
"npmName": "simple-react-calendar",
"description": "A simple calendar component for React based applications.",
"main": "lib/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/toptal/simple-react-calendar.git"
},
"version": "2.2.8",
"scripts": {
"start": "webpack-dev-server --config config/webpack.dev.js --env.development --hot --progress",
"build": "rm -rf ./dist && webpack --config config/webpack.lib.js --progress --env.production ",
"build:lib": "yarn babel src --delete-dir-on-start --out-dir lib --extensions '.ts','.tsx' --ignore 'src/example','src/@types','src/calendar/__specs__'",
"clean": "rm -rf ./lib rm -rf ./dist",
"test": "env NODE_ENV=test TZ=UTC jest ",
"test:watch": "env NODE_ENV=test TZ=UTC jest --watch",
"test:coverage": "env NODE_ENV=test TZ=UTC jest --coverage",
"test:ci": "env NODE_ENV=test TZ=UTC jest --bail --coverage --maxWorkers=4 --ci",
"lint:tsc": "tsc -p ./tsconfig.json",
"lint:ci": "yarn lint:tsc && davinci-syntax lint code . --max-warnings 267 --quiet",
"lint": "yarn lint:tsc && yarn prettier-standard && davinci-syntax lint code . --max-warnings 267",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook -c .storybook -o docs",
"storybook:deploy": "storybook-to-ghpages -s public -o docs"
},
"bugs": {
"url": "https://github.com/toptal/simple-react-calendar/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{jsx,js,tsx,ts,md,yml}": [
"yarn prettier-standard --changed"
],
"*.{jsx,js,tsx,ts}": [
"davinci-syntax lint code"
]
},
"keywords": [
"react",
"reactjs",
"simple",
"calendar",
"react-component",
"calendar",
"full calendar"
],
"files": [
"README.md",
"lib",
"dist"
],
"homepage": "https://github.com/toptal/simple-react-calendar#readme",
"directories": {
"doc": "docs",
"lib": "lib"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-typescript": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.3",
"@semantic-release/npm": "^7.0.2",
"@semantic-release/release-notes-generator": "^9.0.0",
"@storybook/addon-actions": "^5.3.12",
"@storybook/addon-knobs": "^5.3.12",
"@storybook/addons": "^5.3.12",
"@storybook/react": "^5.3.12",
"@storybook/storybook-deployer": "^2.8.1",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^10.0.1",
"@toptal/davinci-syntax": "^0.1.0-alpha.60",
"@types/classnames": "^2.2.9",
"@types/jest": "^26.0.15",
"@types/react-dom": "^16.9.4",
"autoprefixer": "^9.5.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.2.6",
"babel-loader": "^8.0.0",
"commitizen": "^4.0.3",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"danger": "^10.0.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"enzyme-to-json": "^3.3.5",
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"html-webpack-template": "^6.2.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"markdown-table": "^2.0.0",
"mockdate": "^2.0.2",
"prettier-standard": "^16.2.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.11.0",
"semantic-release": "^17.0.2",
"style-loader": "^2.0.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"typescript": "^3.6.4",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-middleware": "^3.6.1",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^5.1.2"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"dependencies": {
"classnames": "^2.2.5",
"date-fns": "^1.27.2"
}
}