This repository was archived by the owner on Jun 29, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.74 KB
/
Copy pathpackage.json
File metadata and controls
130 lines (130 loc) · 3.74 KB
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
{
"name": "tt-react-calendar",
"version": "1.5.6",
"description": "A React calendar component with as few frills as humanly possible",
"main": "dist/",
"module": "dist-modules/",
"files": [
"dist/",
"dist-modules/"
],
"scripts": {
"build:example": "webpack --config ./example/webpack.prod.js",
"dist": "webpack --env dist && postcss src/styles.css -o dist/styles.css",
"dist:all": "npm run dist:modules && npm run dist:min",
"dist:min": "webpack --env dist:min && POSTCSS_MIN=true postcss src/styles.css -o dist/styles.css",
"dist:modules": "rimraf ./dist-modules && postcss src/styles.css -o dist-modules/styles.css && babel ./src --out-dir ./dist-modules",
"lint": "npm run lint:js && npm run lint:css",
"lint:css": "stylelint src/**/*.css",
"lint:js": "eslint src",
"prepublish": "npm run dist:all",
"start": "webpack-dev-server --hot --inline --config ./example/webpack.config.js",
"test": "NODE_ENV=test ava"
},
"ava": {
"require": [
"babel-register",
"./setup-tests"
],
"babel": "inherit"
},
"keywords": [
"calendar",
"react",
"todaytix",
"simple",
"basic"
],
"author": "Jeremy Tice <jetpacmonkey@gmail.com>",
"license": "MIT",
"repository": "TodayTix/tt-react-calendar",
"devDependencies": {
"ava": "^0.19.1",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-plugin-css-modules-transform": "^1.2.7",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.24.1",
"cheerio": "^0.22.0",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.27.3",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"jsdom": "^9.12.0",
"lodash": "^4.17.4",
"lodash-webpack-plugin": "^0.11.2",
"postcss-cli": "^3.0.0",
"postcss-cssnext": "^2.10.0",
"postcss-loader": "^1.3.3",
"postcss-nested": "^1.0.0",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.6.1",
"sinon": "^2.1.0",
"style-loader": "^0.18.2",
"stylelint": "^7.10.1",
"stylelint-config-standard": "^16.0.0",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.5.0"
},
"dependencies": {
"classnames": "^2.2.5",
"moment": ">= 2.29.4 < 3",
"react": "15.x",
"react-dom": "^15.6.1"
},
"resolutions": {
"ajv": "^6.12.3",
"async": "^2.6.4",
"braces": "^3.0.3",
"browserify-sign": "^4.2.2",
"cipher-base": "^1.0.5",
"cookie": "^0.7.0",
"deep-extend": "^0.5.1",
"dns-packet": "^1.3.2",
"dot-prop": "^4.2.1",
"elliptic": "^6.6.1",
"eventsource": "^1.1.1",
"express": "^4.20.0",
"form-data": "^2.5.4",
"fsevents": "^1.2.13",
"got": "^11.8.5",
"handlebars": "^4.7.9",
"hoek": "^4.2.1",
"http-proxy": "^1.18.1",
"ip": "^1.1.9",
"js-yaml": "^3.13.1",
"json-schema": "^0.4.0",
"jsonpointer": "^5.0.0",
"lodash": "^4.17.21",
"lodash.merge": "^4.6.2",
"macaddress": "^0.2.9",
"minimatch": "^3.1.3",
"minimist": "^1.2.6",
"node-fetch": "^2.6.7",
"node-forge": "^1.4.0",
"on-headers": "^1.1.0",
"pbkdf2": "^3.1.3",
"qs": "^6.4.1",
"querystringify": "^2.0.0",
"send": "^0.19.0",
"serve-static": "^1.16.0",
"sha.js": "^2.4.12",
"shelljs": "^0.8.5",
"sockjs": "^0.3.20",
"stringstream": "^0.0.6",
"tar": "^7.5.11",
"thenify": "^3.3.1",
"tough-cookie": "^4.1.3",
"tunnel-agent": "^0.6.0",
"url-parse": "^1.5.10",
"webpack-dev-middleware": "^5.3.4",
"yargs-parser": "^5.0.1"
}
}