-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.28 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.28 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
{
"name": "@antecha/uitest",
"version": "0.1.2",
"main": "build/index.js",
"module": "build/index.es.js",
"scripts": {
"start": "styleguidist server",
"test": "jest --config jest.config.js",
"updateSnapshot": "yarn test --updateSnapshot",
"lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"test:ci": "yarn test --ci",
"test:lint": "tsc --noEmit && eslint 'src/components/**/*.{js,ts,tsx}' --quiet",
"build": "rollup -c",
"build:styleguide": "styleguidist build"
},
"repository": {
"type": "git",
"url": "https://github.com/antecha/uitest"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"license": "ISC",
"files": [
"build/**/*"
],
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-export-default-from": "^7.7.4",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.7.7",
"@types/jest": "^24.0.25",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/react-test-renderer": "^16.9.1",
"@types/styled-components": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"autoprefixer": "^9.7.1",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"jest": "^24.9.0",
"jest-styled-components": "^6.3.4",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.2.1",
"prettier": "^1.19.1",
"react": "^16.11.0",
"react-docgen-typescript": "^1.15.1",
"react-dom": "^16.11.0",
"react-styleguidist": "^10.2.0",
"react-test-renderer": "^16.12.0",
"rollup": "^1.26.5",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.25.2",
"style-loader": "^1.0.0",
"styled-components": "^4.4.1",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"webpack": "^4.41.2"
},
"peerDependencies": {
"react": "^16.x",
"react-dom": "^16.x",
"styled-components": "^4.x"
},
"dependencies": {}
}