-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
103 lines (103 loc) · 3.06 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
{
"name": "react-timekeeper",
"version": "2.2.1",
"description": "Time picker based on the style of the Google Keep app",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/catc/react-timekeeper.git"
},
"homepage": "https://catc.github.io/react-timekeeper/",
"keywords": [
"react",
"time",
"time picker",
"picker",
"hour",
"24 hour",
"minute",
"react spring"
],
"author": "Catalin Covic <[email protected]>",
"license": "MIT",
"scripts": {
"install-all": "yarn install && yarn add -P react react-dom",
"docs:dev": "node ./bin/dev.js",
"docs:build": "node ./bin/build.js",
"_clean": "rimraf lib && mkdir lib",
"_build": "NODE_ENV=production babel src --extensions '.tsx' --extensions '.ts' -d lib --ignore '**/__tests__/'",
"_types": "NODE_ENV=production tsc --emitDeclarationOnly -d --outDir lib --esModuleInterop --jsx react-jsx src/index.ts",
"lib": " npm run _clean && npm run _build & npm run _types",
"eslint": "eslint src/ docs/",
"ts:compile": "tsc --noEmit -p tsconfig.json",
"tests:watch": "NODE_ENV=test jest --watch",
"tests": "NODE_ENV=test jest"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@emotion/eslint-plugin": "^11.7.0",
"@hot-loader/react-dom": "^16.13.0",
"@testing-library/react": "^12.1.2",
"@types/jest": "^24.0.15",
"@types/lodash.debounce": "^4.0.6",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "5.8.0",
"@typescript-eslint/parser": "5.8.0",
"autoprefixer": "^9.7.4",
"babel-loader": "^8.2.3",
"css-loader": "^3.0.0",
"cssnano": "^4.1.10",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^4.3.0",
"highlight.js": "^9.15.10",
"jest": "^24.8.0",
"jest-watch-typeahead": "^0.4.2",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"prettier": "^2.5.1",
"react-hot-loader": "^4.11.1",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"typescript": "^4.5.4",
"webpack": "^4.35.0",
"webpack-dev-server": "^3.7.2"
},
"engines": {
"node": ">=12.16.2"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"lodash.debounce": "^4.0.8",
"react-spring": "^9.3.3"
},
"eslintIgnore": [
"lib/",
"docs/build/",
"node_modules/"
],
"jest": {
"rootDir": "src",
"testRegex": ".*\\.test\\.tsx?$",
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
}
}