This repository was archived by the owner on Feb 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.38 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
{
"name": "reactponsive",
"version": "1.0.11",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"author": "José Manuel Lucas <[email protected]>",
"license": "MIT",
"keywords": [
"react",
"responsive",
"reactponsive",
"media queries",
"matchmedia"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jmlweb/reactponsive"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "NODE_ENV=production rollup -c",
"watch": "rollup -cw",
"prepare": "npm run build",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}' --fix",
"test": "jest --coverage",
"test:simple": "jest",
"test:watch": "jest --watch",
"coveralls": "npm run test && cat ./coverage/lcov.info | coveralls",
"storybook": "start-storybook -p 9001 -c .storybook",
"deploy-storybook": "storybook-to-ghpages"
},
"devDependencies": {
"@storybook/addon-storysource": "^5.3.17",
"@storybook/addon-viewport": "^5.3.17",
"@storybook/react": "^5.3.17",
"@storybook/storybook-deployer": "^2.8.3",
"@testing-library/jest-dom": "^5.3.0",
"@testing-library/react": "^9.5.0",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^25.1.4",
"@types/react": "^16.9.27",
"@types/react-dom": "^16.9.5",
"@types/storybook__react": "^5.2.1",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.1.0",
"copyfiles": "^2.2.0",
"coveralls": "^3.0.11",
"jest": "^25.2.4",
"jest-extended": "^0.11.5",
"json": "^9.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.2",
"react": "^16.13.0",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.0",
"rimraf": "^3.0.2",
"rollup": "^2.3.0",
"rollup-plugin-analyzer": "^3.2.2",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-progress": "^1.1.1",
"rollup-plugin-typescript2": "^0.27.0",
"styled-components": "^5.0.1",
"ts-jest": "^25.3.0",
"tslib": "^1.11.1",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.2.0",
"tslint-react-hooks": "^2.2.2",
"typescript": "^3.8.3"
},
"peerDependencies": {
"@testing-library/react": ">=10",
"@testing-library/react-hooks": ">=3",
"react": ">=16.13.1",
"react-test-renderer": ">=16.13"
},
"dependencies": {},
"resolutions": {
"@types/react": "^16.9.13"
}
}