-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
122 lines (122 loc) · 4.16 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
{
"name": "testing-playground",
"version": "1.13.3",
"description": "Simple and complete DOM testing playground that encourage good testing practices.",
"author": "Stephan Meijer <stephan.meijer@gmail.com>",
"homepage": "https://testing-playground.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/testing-library/testing-playground"
},
"bugs": {
"url": "https://github.com/testing-library/testing-playground/issues"
},
"scripts": {
"dev": "npx --node-arg=--inspect netlify dev",
"start": "run-s start:client",
"start:client": "cross-env NODE_ENV=development node ./scripts/build-client",
"start:devtools": "cross-env NODE_ENV=development node ./scripts/build-devtools",
"build": "run-s clean build:*",
"build:client": "cross-env NODE_ENV=production node ./scripts/build-client",
"build:server": "cross-env NODE_ENV=production node ./scripts/build-lambda",
"build:devtools": "cross-env NODE_ENV=production node ./scripts/build-devtools",
"lint": "run-s lint:*",
"lint:eslint": "eslint . --quiet --fix",
"lint:prettier": "prettier . --write",
"clean": "run-p clean:*",
"clean:cache": "rimraf ./dist ./.cache ./.parcel-cache",
"clean:dist": "rimraf ./dist",
"ci:lint": "eslint",
"ci:test": "jest --ci",
"ci:changelog": "node scripts/changelog.js",
"test": "jest",
"test:watch": "jest --watch",
"bump:patch": "npm version patch -m 'release: cut the %s release'",
"bump:minor": "npm version minor -m 'release: cut the %s release'",
"bump:major": "npm version major -m 'release: cut the %s release'",
"preversion": "npm run test",
"postversion": "git push && git push --tags && git checkout live && git merge develop --ff && git push && git checkout -"
},
"dependencies": {
"@primer/octicons-react": "^10.0.0",
"@reach/dialog": "^0.10.5",
"@reach/menu-button": "^0.9.1",
"@testing-library/dom": "^7.22.5",
"@testing-library/user-event": "^12.1.2",
"codemirror": "5.54.0",
"crx-bridge": "^2.1.0",
"deep-diff": "^1.0.2",
"dom-accessibility-api": "^0.4.4",
"isomorphic-fetch": "^2.2.1",
"js-beautify": "^1.11.0",
"lodash.debounce": "4.0.8",
"lodash.throttle": "^4.1.1",
"lz-string": "^1.4.4",
"memoize-one": "^5.1.1",
"pretty-format": "26.0.1",
"query-string": "^6.12.1",
"react": "^16.13.1",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-toastify": "^6.0.5",
"react-toggle": "^4.1.1",
"react-virtualized-auto-sizer": "^1.0.2",
"react-window": "^1.8.5",
"use-effect-reducer": "^0.6.1"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@testing-library/jest-dom": "^5.9.0",
"@testing-library/react": "^10.2.0",
"@testing-library/react-hooks": "^3.3.0",
"@types/fs-extra": "^9.0.1",
"babel-eslint": "^10.1.0",
"chrome-launch": "^1.1.4",
"conventional-changelog": "^3.1.21",
"conventional-changelog-config-spec": "^2.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"fs-extra": "^9.0.1",
"get-port": "^5.1.1",
"git-semver-tags": "^4.0.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-extended": "^0.11.5",
"jest-in-case": "^1.0.2",
"lint-staged": "^10.2.9",
"netlify-cli": "^2.57.0",
"npm-run-all": "^4.1.5",
"parcel": "^2.0.0-nightly.280",
"postcss-import": "^12.0.1",
"postcss-modules": "^2.0.0",
"prettier": "^2.0.5",
"react-test-renderer": "^16.13.1",
"rimraf": "^3.0.2",
"tailwindcss": "^1.4.6",
"workbox-build": "^5.1.3"
},
"jest": {
"verbose": true,
"moduleNameMapper": {
"\\.(jpg|jpeg|png|svg|css)$": "<rootDir>/src/__mocks__/fileMock.js"
},
"setupFilesAfterEnv": [
"./tests/setupTests.js"
]
},
"keywords": [],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}