This repository has been archived by the owner on Nov 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.7 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
{
"name": "react-scaled-scheduler",
"version": "1.1.5",
"description": "Scheduler with events drawn to scale along a time axis, with drag and drop support",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-js": "./node_modules/webpack/bin/webpack.js",
"build-css": "./node_modules/.bin/stylus src/scheduler.styl -o dist/react-scaled-scheduler.css",
"build": "npm run build-js; npm run build-css",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uptick/react-scaled-scheduler.git"
},
"keywords": [
"react",
"scaled",
"scheduler",
"calendar",
"dnd",
"drag",
"drop",
"time",
"event",
"events"
],
"author": "Uptick Pty Ltd",
"license": "MIT",
"bugs": {
"url": "https://github.com/uptick/react-scaled-scheduler/issues"
},
"homepage": "https://github.com/uptick/react-scaled-scheduler#readme",
"dependencies": {
"classnames": "^2.2.5",
"event-time-utils": "^1.0.1",
"moment": "^2.22.1",
"prop-types": "^15.6.1",
"react": "^16.3",
"react-dnd": "^2.6.0",
"react-dom": "^16.3",
"shallow-utils": "^1.0.1",
"stylus": "^0.54.8"
},
"peerDependencies": {
"react": "0.14.x || 15.x || 16.x",
"react-dom": "0.14.x || 15.x || 16.x"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"webpack": "4.19.0",
"webpack-cli": "^2.1.3",
"webpack-node-externals": "^1.7.2"
}
}