-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
149 lines (149 loc) · 5.25 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
141
142
143
144
145
146
147
148
149
{
"name": "@remotelock/react-week-scheduler",
"version": "0.0.0-development",
"license": "MIT",
"description": "",
"homepage": "https://remotelock.github.io/react-week-scheduler/",
"private": false,
"sideEffects": [
"*.css"
],
"keywords": [
"calendar",
"time grid",
"week",
"scheduler",
"schedule",
"google calendar",
"fullcalendar"
],
"main": "index.js",
"module": "index.mjs",
"types": "./src/index.d.ts",
"dependencies": {
"@reach/visually-hidden": "^0.1.2",
"@rehooks/component-size": "^1.0.2",
"classcat": "^3.2.5",
"date-fns": "^1.30.1",
"invariant": "^2.2.4",
"lodash": "^4.17.11",
"merge-ranges": "^1.0.2",
"mousetrap": "^1.6.3",
"re-resizable": "^4.11.0",
"react-draggable": "^3.2.1",
"rxjs": "^6.4.0",
"scroll-into-view-if-needed": "^2.2.20"
},
"peerDependencies": {
"pepjs": "^0.5.0",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.0.0-0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@commitlint/cli": "^7.5.2",
"@svgr/parcel-plugin-svgr": "^4.1.0",
"@tippy.js/react": "^2.1.1",
"@types/invariant": "^2.2.29",
"@types/jest": "^24.0.9",
"@types/lodash": "4.14.120",
"@types/mousetrap": "^1.6.1",
"@types/node": "^11.10.4",
"@types/react": "^16.8.8",
"@types/react-dom": "^16.8.2",
"@types/stylelint": "^9.4.2",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-date-fns": "^0.2.1",
"babel-plugin-transform-imports": "^1.5.1",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-compat": "^2.7.0",
"eslint-plugin-css-modules": "^2.11.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.5.0",
"gh-pages": "^2.0.1",
"humanize-duration": "^3.18.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"node-sass": "^4.11.0",
"nodemon": "^1.18.10",
"npm-run-all": "^4.1.5",
"parcel": "^1.12.0",
"parcel-bundler": "^1.12.2",
"pepjs": "^0.5.0",
"postcss-modules": "^1.4.1",
"prettier": "^1.16.4",
"react": ">=16.8",
"react-custom-properties": "^1.2.0",
"react-dom": ">=16.8",
"resize-observer-polyfill": "^1.5.1",
"rimraf": "^2.6.3",
"rollup": "^1.6.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-postcss": "^2.0.3",
"sass": "^1.17.2",
"scroll-into-view-if-needed": "^2.2.20",
"semantic-release": "^16.0.0-beta.22",
"source-map-explorer": "^1.7.0",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-csstree-validator": "^1.3.0",
"stylelint-no-unsupported-browser-features": "^3.0.2",
"typed-scss-modules": "^0.0.9",
"typescript": "^3.3.3333",
"use-undo": "^1.0.0",
"yarnhook": "^0.4.0"
},
"scripts": {
"pre-commit": "yarn common-check",
"lint-staged": "lint-staged",
"check-prettier": "prettier '**/*.{t,j}s{,x}' '**/*.{css,scss,json,md}' --list-different",
"common-check": "run-p -c --aggregate-output lint check-prettier check-integrity",
"check-integrity": "yarn check --integrity",
"precheck-ts": "run-p types/scss",
"check-ts": "tsc --project . --noEmit",
"lint-ts/eslint": "eslint '**/*.ts{,x}'",
"lint-scss": "stylelint '**/*.scss'",
"lint-ts": "run-p -c --aggregate-output 'lint-ts/*'",
"lint": "run-p -c --aggregate-output lint-ts lint-scss",
"analyze": "source-map-explorer 'dist/*.js'",
"prestart": "run-p types/scss",
"start/parcel": "parcel demo/index.html",
"start": "run-p types/scss/dev start/parcel",
"rollup": "NODE_ENV=production rollup -c rollup.config.js -m",
"types/scss/dev": "nodemon -w '{src,demo}/**/*.scss' --exec 'yarn types/scss'",
"types/scss": "yarn tsm '{src,demo}/**/*.scss' -n none -e default && yarn types/scss/fix",
"types/scss/fix": "for file in src/**/*.scss.d.ts; do echo export $(cat $file) > $file; done",
"types/ts": "yarn tsc -p ./tsconfig.types.json",
"types": "run-s types/scss types/ts",
"clean": "rimraf dist index.js index.mjs src/{!types}/*.d.ts index.css 'demo/**/*.d.ts' 'src/**/*.d.ts' 'src/**/*.map' './*.map'",
"prebuild": "npm-run-all -s clean -p lint check-ts",
"build/demo": "NODE_ENV=production parcel build demo/index.html --public-url /react-week-scheduler/",
"build": "npm-run-all -s clean -p --aggregate-output types build/demo rollup",
"deploy/demo": "gh-pages -d dist",
"run-prettier": "prettier --write '*.json' 'types/**/*.ts' 'src/**/*.ts{,x}' 'src/**/*.scss'",
"semantic-release": "semantic-release",
"commitlint": "commitlint -e $GIT_PARAMS"
},
"repository": {
"type": "git",
"url": "https://github.com/remotelock/react-week-scheduler.git"
},
"engines": {
"node": ">=10.13.0"
}
}