-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.6 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
{
"author": "beardguy",
"description": "Snapshot components atomically with a friendly output",
"homepage": "https://github.com/paullewisn/jest-snapshot-propifier",
"keywords": [
"jest",
"snapshot",
"react-test-renderer"
],
"main": "./build/index.js",
"types": "./index.d.ts",
"name": "jest-snapshot-propifier",
"version": "1.5.5",
"repository": {
"type": "git",
"url": "https://github.com/paullewisn/jest-snapshot-propifier.git"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/plugin-transform-modules-commonjs": "^7.17.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.0.3",
"@types/lodash.snakecase": "^4.1.6",
"@types/react": "^17.0.37",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"babel-jest": "^27.4.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-perfectionist": "^3.9.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"jest": "^27.4.4",
"prettier": "2.5.1",
"ts-jest": "^27.1.1",
"typescript": "^4.5.3"
},
"dependencies": {
"lodash.snakecase": "^4.1.1",
"react": ">=17.0.2",
"react-test-renderer": ">=17.0.2"
},
"scripts": {
"test": "jest",
"build": "rimraf build && babel --out-dir build --extensions '.ts,.tsx' src"
}
}