-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) 路 2.55 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) 路 2.55 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
{
"name": "easy-qa",
"version": "0.0.1",
"files": [
"dist"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"description": "Easy QA helps developers and designers to create screens identical to the design.",
"author": "Sergioamjr",
"license": "MIT",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sergioamjr/react-pixel-perfect.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/Sergioamjr/react-pixel-perfect/issues"
},
"homepage": "https://github.com/Sergioamjr/react-pixel-perfect#readme",
"dependencies": {
"@types/styled-components": "^5.1.2",
"react-rnd": "^10.2.4",
"styled-components": "^5.1.1",
"typescript": "^4.0.2"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-url": "^5.0.1",
"@storybook/addon-actions": "^6.0.28",
"@storybook/addon-essentials": "^6.0.28",
"@storybook/addon-links": "^6.0.28",
"@storybook/react": "^6.0.28",
"@svgr/rollup": "^5.4.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@testing-library/user-event": "^12.1.5",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.11.1",
"canvas": "^2.6.1",
"eslint": "^7.8.1",
"eslint-plugin-react": "^7.20.6",
"husky": "^4.2.5",
"jest": "^26.4.2",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^10.2.13",
"react-is": "^16.13.1",
"rimraf": "^3.0.2",
"rollup": "^2.26.11",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-typescript2": "^0.27.2",
"tslint": "^6.1.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}