-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
102 lines (102 loc) · 2.82 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
{
"name": "dayz",
"version": "2.9.1",
"description": "A Day/Week/Month display React component",
"main": "dist/dayz.js",
"module": "dist/dayz.esm.js",
"browser": "dist/dayz.js",
"browserslist": "> 0.25%, not dead",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nathanstitt/dayz.git"
},
"keywords": [
"react",
"calendar",
"events"
],
"author": "Nathan Stitt",
"license": "MIT",
"bugs": {
"url": "https://github.com/nathanstitt/dayz/issues"
},
"homepage": "https://github.com/nathanstitt/dayz#readme",
"dependencies": {
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"tiny-emitter": "^2.1.0"
},
"peerDependencies": {
"moment": "^2.24",
"moment-range": ">=4.0",
"prop-types": "*",
"react": "*",
"react-dom": ">=16.9.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-runtime": "^6.26.0",
"babel7-jest": "^1.0.1",
"babelrc-rollup": "^3.0.0",
"css-loader": "^3.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.2.1",
"eslint-config-argosity": "^1.7.0",
"eslint-plugin-react": "^7.14.3",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^4.2.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-exec": "^4.0.0",
"gulp-run": "^1.7.1",
"gulp-util": "^3.0.8",
"gulp-watch": "^5.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"moment": "^2.22.2",
"moment-range": "^4.0.1",
"node-sass": "^7.0.0",
"npm-release": "^1.0.0",
"react": "^16.9.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.9.0",
"react-test-renderer": "^16.9.0",
"rollup": "^1.20.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sass": "^1.2.2",
"sass-loader": "^7.3.1",
"scss": "^0.2.4",
"scss-loader": "0.0.1",
"style-loader": "^1.0.0",
"through2": "^3.0.1",
"url-loader": "^2.1.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
},
"scripts": {
"test": "./script/test",
"ci": "./script/cibuild",
"prepublishOnly": "./script/prepublish",
"start": "./script/demo",
"build": "$(npm bin)/rollup -c",
"preversion": "./script/preversion"
}
}