-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
122 lines (122 loc) · 3.75 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
{
"name": "react-schedule-selector",
"version": "3.0.1",
"description": "A mobile-friendly when2meet-style grid-based schedule selector",
"author": "Bibek Ghimire",
"repository": {
"type": "git",
"url": "https://github.com/bibekg/react-schedule-selector.git"
},
"keywords": [
"react",
"styled-components",
"date",
"grid"
],
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"files": [
"dist/lib",
"src/lib"
],
"license": "MIT",
"scripts": {
"postpublish": "yarn docs:deploy",
"build": "yarn clean && yarn lib:build && yarn lib:build-types && yarn docs:build",
"lint": "eslint src/**/*.{js,jsx} --quiet",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"clean": "rm -rf dist",
"cover": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"test": "TZ=UTC jest",
"lib:build": "babel src/lib --out-dir dist/lib --extensions \".ts,.tsx\" --source-maps inline",
"lib:build-types": "tsc --emitDeclarationOnly -d",
"docs:dev": "parcel serve src/docs/index.html -d dev/docs",
"docs:build": "parcel build src/docs/index.html -d dist/docs",
"docs:deploy": "yarn docs:build && surge dist/docs --domain react-schedule-selector.surge.sh"
},
"engines": {
"node": ">8.0"
},
"peerDependencies": {
"react": ">=16.0",
"styled-components": ">=5.0"
},
"dependencies": {
"@emotion/core": "^10.0.27",
"@emotion/styled": "^10.0.27",
"@types/jest": "^26.0.15",
"@types/react-dom": "^18.0.11",
"date-fns": "^1.29.0",
"src": "^1.1.2"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-typescript": "^7.12.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/enzyme": "^3.10.7",
"@types/react": "^16.9.53",
"@types/react-test-renderer": "^16.9.3",
"@types/styled-components": "^5.1.4",
"@types/styled-system": "^5.1.10",
"@typescript-eslint/parser": "^5.53.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^26.6.1",
"babel-loader": "^7.1.4",
"babel-plugin-styled-components": "^1.6.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"core-js": "^3.6.5",
"coveralls": "^3.0.2",
"enzyme": "^3.5.0",
"enzyme-adapter-react-16": "^1.3.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"jest": "^26.6.1",
"jest-styled-components": "^7.0.3",
"jsdom": "^12.0.0",
"moment": "^2.22.2",
"node-forge": "^0.10.0",
"parcel-bundler": "^1.12.4",
"prettier": "^1.14.2",
"react": ">=16.3.0",
"react-dom": "^16.3.2",
"react-test-renderer": "^16.4.1",
"regenerator-runtime": "^0.12.1",
"styled-components": "^5.2.0",
"styled-system": "^5.1.5",
"surge": "^0.20.1",
"typescript": "^4.0.3",
"typescript-plugin-styled-components": "^1.4.4"
},
"prettier": {
"singleQuote": true,
"semi": false,
"printWidth": 120,
"tabWidth": 2
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/setupTests.js"
],
"testMatch": [
"<rootDir>/**/*.{spec,test}.{js,jsx,ts,tsx}"
],
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "<rootDir>/node_modules/babel-jest"
},
"verbose": false
}
}