forked from uber/react-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.04 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
{
"name": "react-view",
"version": "2.3.1",
"description": "",
"keywords": [
"react",
"uber",
"playground",
"view",
"documentation"
],
"main": "dist/lib/index.js",
"module": "dist/es/index.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"author": "Vojtech Miksu <[email protected]>",
"repository": "uber/react-view",
"license": "MIT",
"sideEffects": false,
"scripts": {
"build": "tsc --p tsconfig.lib.json && tsc --p tsconfig.es.json",
"lint": "eslint '{examples,src}/**/*.{js,ts,tsx}'",
"prebuild": "rimraf dist",
"storybook": "start-storybook -p 6006",
"storybook:ci": "start-storybook --ci -p 6006",
"storybook:static": "build-storybook",
"test": "tsc && yarn lint && jest",
"test:ci": "tsc && yarn lint && yarn test:unit --runInBand && yarn test:e2e:ci",
"test:e2e": "HEADLESS=false jest examples",
"test:e2e:band": "jest examples --runInBand",
"test:e2e:ci": "start-server-and-test storybook:ci http://localhost:6006 test:e2e:band",
"test:unit": "jest src",
"typecheck": "tsc"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"preset": "jest-puppeteer"
},
"dependencies": {
"@babel/code-frame": "^7.5.5",
"@babel/core": "^7.7.0",
"@babel/generator": "^7.7.0",
"@babel/preset-react": "^7.7.0",
"@babel/template": "^7.7.0",
"@babel/traverse": "^7.7.0",
"@babel/types": "^7.7.1",
"@miksu/prettier": "^1.18.3",
"@miksu/react-tiny-popover": "^3.5.1",
"copy-to-clipboard": "^3.2.0",
"lodash": "^4.17.15",
"prism-react-renderer": "^1.0.2",
"react-simple-code-editor": "^0.10.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.7.2",
"@storybook/react": "^5.2.5",
"@types/babel__code-frame": "^7.0.1",
"@types/babel__core": "^7.1.3",
"@types/babel__generator": "^7.6.0",
"@types/babel__template": "^7.0.2",
"@types/babel__traverse": "^7.0.7",
"@types/expect-puppeteer": "^3.3.3",
"@types/jest": "^24.0.15",
"@types/jest-environment-puppeteer": "^4.3.1",
"@types/lodash": "^4.14.144",
"@types/node": "^12.12.12",
"@types/puppeteer": "^2.0.0",
"@types/react": "^16.9.12",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"eslint": "^6.7.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"jest": "^24.8.0",
"jest-puppeteer": "^4.3.0",
"prettier": "^1.14.3",
"puppeteer": "^2.0.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"rimraf": "^3.0.0",
"start-server-and-test": "^1.10.6",
"ts-jest": "^24.0.2",
"typescript": "^3.7.2"
},
"volta": {
"node": "10.17.0",
"yarn": "1.19.1"
}
}