This repository has been archived by the owner on Sep 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
76 lines (76 loc) · 2.93 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
{
"name": "fd-cypress-recorder",
"version": "0.23.0",
"description": "Fd Cypress Recorder captures user interactions and generates Cypress test code.",
"main": "fd-cypress-recorder/content.js",
"scripts": {
"build": "npm run webpack",
"copy:manifest:chrome": "cpx -p manifest/chrome/manifest.json fd-cypress-recorder",
"copy:manifest:firefox": "cpx -p manifest/firefox/manifest.json fd-cypress-recorder",
"lint": "eslint src/**/*",
"prettier": "prettier -c src/**/*.{tsx,ts}",
"release:chrome": "npm run copy:manifest:chrome && npm run webpack",
"release:firefox": "npm run copy:manifest:firefox && npm run webpack",
"test": "jest",
"test:updateSnapshot": "jest -u",
"watch": "cross-env NODE_ENV=production webpack --mode production -w",
"watch-dev": "cross-env NODE_ENV=development webpack --mode development -w",
"webpack": "cross-env NODE_ENV=production webpack --mode production",
"webpack-bundle-analyzer": "cross-env WEBPACK_BUNDLE_ANALYZER=true npm run webpack"
},
"repository": {
"type": "git",
"url": "[email protected]:FDMediagroep/fd-cypress-recorder.git"
},
"author": "Willem Liu",
"license": "ISC",
"devDependencies": {
"@fdmg/design-system": "^0.4.45",
"@fdmg/resubstitute": "^0.1.2",
"@types/chrome": "0.0.158",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.175",
"@types/react": "^17.0.24",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dom": "^17.0.9",
"@types/react-test-renderer": "^17.0.1",
"@types/webpack-env": "^1.16.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"coveralls": "^3.1.1",
"cpx": "^1.5.0",
"cross-env": "^7.0.3",
"css-loader": "^6.3.0",
"date-input-polyfill": "^2.14.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.0",
"jest": "^27.2.3",
"jest-cli": "^27.2.3",
"jest-css-modules": "^2.1.0",
"mini-css-extract-plugin": "^2.3.0",
"null-loader": "^4.0.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^6.1.1",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.4.1",
"react-test-renderer": "^17.0.2",
"sass": "^1.42.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.3.0",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webpack": "^5.55.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^17.0.2",
"unique-selector": "^0.5.0"
}
}