This repository has been archived by the owner on Jan 9, 2024. It is now read-only.
forked from nvh95/jest-preview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
146 lines (146 loc) ยท 4.48 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "jest-preview",
"version": "0.3.2-alpha.1",
"description": "Preview your Jest tests in a browser",
"keywords": [
"testing",
"jest",
"frontend",
"productivity",
"debug",
"preview jest"
],
"homepage": "https://www.jest-preview.com",
"repository": {
"type": "git",
"url": "git+https://github.com/nvh95/jest-preview.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/jest-preview"
},
"license": "MIT",
"author": {
"name": "Hung Viet Nguyen",
"url": "https://github.com/nvh95"
},
"main": "dist/index.js",
"bin": {
"jest-preview": "dist/cli/index.js"
},
"files": [
"dist",
"transforms",
"cli"
],
"scripts": {
"docs": "cd website && npm run start",
"build:docs": "cd website && npm run build",
"build:docs:cn": "cd website && npm run build:cn",
"dev": "vite",
"build:legacy::only": "vite build",
"build:legacy:watch": "vite build --watch",
"build": "rimraf dist && rollup -c",
"build:watch": "rimraf dist && rollup -c -w",
"prepublishOnly": "pnpm run build",
"publish:alpha": "cross-env BUILD_TAG=alpha npm publish --tag alpha",
"publish:latest": "cross-env BUILD_TAG=latest npm publish",
"preview": "vite preview",
"server": "node dist/cli/index.js",
"server:watch": "nodemon dist/cli/index.js",
"test:dev": "jest --clearCache && cross-env NODE_ENV=test jest --watch App",
"test:dev:cache": "cross-env NODE_ENV=test jest --watch App",
"test:ci": "cross-env NODE_ENV=test jest",
"clearCache": "node cli/clearCache.js",
"test": "npm-run-all -p server test:dev",
"prettier": "prettier cli src --check",
"prettier:fix": "pnpm run prettier -- --write",
"sort": "npx sort-package-json",
"postinstall": "node -e \"try{require('./dist/cli/clearCache')}catch(e){console.log(e)}\"",
"publish:local": "npm publish --registry http://0.0.0.0:4873/",
"ecosystem-ci": "node scripts/ecosystem-ci.js",
"lint": "eslint . --ext .tsx,.ts,.js,.jsx"
},
"dependencies": {
"@svgr/core": "^6.2.1",
"camelcase": "^6.3.0",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"commander": "^9.2.0",
"connect": "^3.7.0",
"find-node-modules": "^2.1.3",
"open": "^8.4.0",
"postcss-import": "^14.1.0",
"postcss-load-config": "^4.0.1",
"rollup-plugin-copy": "^3.4.0",
"sirv": "^2.0.2",
"slash": "^3.0.0",
"string-hash": "^1.1.3",
"update-notifier": "^6.0.2",
"ws": "^8.5.0"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@jest/types": "27",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@stitches/react": "^1.2.8",
"@swc/core": "^1.2.154",
"@swc/jest": "^0.2.20",
"@testing-library/dom": "^8.16.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/connect": "^3.4.35",
"@types/jest": "27",
"@types/less": "^3.0.3",
"@types/node": "^18.6.3",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/styled-components": "^5.1.24",
"@types/svgo": "^2.6.3",
"@types/testing-library__jest-dom": "^5.14.5",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@vitejs/plugin-react": "^1.3.0",
"animate-sass": "^0.8.2",
"animate.css": "^4.1.1",
"autoprefixer": "^10.4.7",
"cross-env": "^7.0.3",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.31.8",
"jest": "^27.5.1",
"jest-watch-typeahead": "^1.0.0",
"less": "^4.1.3",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"postcss-modules": "^4.3.1",
"postcss-trolling": "^0.1.7",
"prettier": "^2.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^18.2.0",
"rimraf": "^3.0.2",
"rollup": "^3.2.3",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-esbuild": "^4.10.1",
"sass": "^1.50.0",
"styled-components": "^5.3.5",
"tailwindcss": "^3.1.2",
"typescript": "^4.6.3",
"vite": "^2.9.1",
"vite-plugin-svgr": "^2.2.0"
},
"bug": {
"url": "https://github.com/nvh95/jest-preview/issues"
}
}