-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.27 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.27 KB
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
{
"name": "quid-ui",
"version": "INDEPENDENT",
"description": "The official Quid Refraction project",
"repository": "git@github.com:quid/refraction.git",
"author": "Federico Zivolo <fzivolo@quid.com>",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"prepare": "node scripts/yarn-link-binaries.js",
"start": "styleguidist server --open",
"build": "styleguidist build",
"create-package": "builder-init $(pwd)/packages/react-package-template",
"test": "yarn eslint && react-app-rewired test",
"eslint": "eslint \"**/*.js\"",
"format": "yarn eslint --fix && prettier \"**/*.{js,md,json}\" --write",
"clean": "rimraf 'packages/*/dist' && rimraf '**/node_modules'"
},
"lint-staged": {
"*.{js,jsx,md,json}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 100,
"functions": 100,
"branches": 100,
"lines": 100
}
},
"coveragePathIgnorePatterns": [
"src",
".*mock\\.js$"
]
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@emotion/cache": "^10.0.0",
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.4",
"@quid/stylis-plugin-focus-visible": "^4.0.0",
"@quid/theme": "^4.0.0",
"@quid/react-core": "^4.0.0",
"@quid/react-forms": "^4.1.0",
"builder-init": "^0.5.1",
"customize-cra": "^0.2.7",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.8.0",
"enzyme-to-json": "^3.3.5",
"eslint-plugin-flow-header": "^0.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-notice": "^0.7.7",
"flow-bin": "0.100.0",
"husky": "^1.2.0",
"jest-date-mock": "^1.0.7",
"jest-emotion": "^10.0.2",
"lerna": "~3.3.2",
"lerna-alias": "^3.0.2",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"prop-types": "^15.7.2",
"react": "^16.7.0",
"react-app-rewired": "^2.1.1",
"react-dom": "^16.7.0",
"react-router-dom": "^5.0.0",
"react-scripts": "^3.0.1",
"react-styleguidist": "^9.0.7",
"rimraf": "^2.6.2",
"what-input": "^5.1.3"
},
"resolutions": {
"eslint": "6.4.0"
}
}