forked from intuit/ReplayWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.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
{
"name": "replayweb",
"private": true,
"version": "0.1.0",
"description": "",
"main": "index.js",
"author": "Harris Borawski",
"scripts": {
"build": "lerna run build",
"test": "jest --coverage",
"test:watch": "jest --watch",
"version": "git add .",
"lint": "eslint '**/*.{js,jsx}' --ignore-pattern '**/lib/**/*'",
"lint:fix": "eslint --fix '**/*.{js,jsx}'",
"release": "auto shipit"
},
"repository": {
"type": "git",
"url": "https://github.com/intuit/ReplayWeb"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"workspaces": [
"packages/*"
],
"keywords": [],
"license": "AGPL",
"devDependencies": {
"@auto-it/upload-assets": "^7.8.0",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@testing-library/react": "^9.1.3",
"auto": "^7.8.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-rewire": "^1.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-mocha": "^6.1.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.8",
"jest": "^24.7.1",
"jest-junit": "^6.3.0",
"lerna": "^3.13.4",
"lint-staged": "^9.4.1",
"prettier": "^1.18.2",
"react-dom": "^16.9.0"
},
"prettier": {
"singleQuote": true,
"semi": false
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}