-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
118 lines (118 loc) · 4 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
{
"name": "matchbox-workspace",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/SparkPost/matchbox.git"
},
"scripts": {
"start:libby": "turbo run prelibby && NODE_ENV=development libby start",
"start:libby:static": "NODE_ENV=production libby build && serve -c ./serve.json -p 9001",
"build": "NODE=--max-old-space-size=8192 turbo run build",
"build:libby": "turbo run prelibby && NODE_ENV=production libby build",
"pretest:ci": "npm run build",
"test:e2e:headless": "NODE_ENV=test node_modules/.bin/cypress run",
"test:e2e:gui": "NODE_ENV=test node_modules/.bin/cypress open",
"test:e2e:ci": "start-server-and-test start:libby:static http://localhost:9001 test:e2e:headless",
"test:regression:gui": "NODE_ENV=test percy exec -- node_modules/.bin/cypress open --config-file cypress-regression.json",
"test:regression:headless": "NODE_ENV=test percy exec -- node_modules/.bin/cypress run --config-file cypress-regression.json",
"test:regression:ci": "start-server-and-test start:libby:static http://localhost:9001 test:regression:headless",
"test:unit": "TZ=UTC node scripts/test.js --config=./jest.config.json",
"test:unit:ci": "CI=true npm run test:unit -- --colors --coverage",
"lint": "eslint packages",
"prepare": "husky install"
},
"lint-staged": {
"**/(*.js|*.ts|*.tsx)": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"@styled-system/prop-types": "^5.1.2",
"@styled-system/props": "^5.1.5",
"downshift": "^3.2.10",
"highlight.js": "^11.5.1",
"react-day-picker": "^7.4.8",
"react-syntax-highlighter": "^15.5.0",
"styled-components": "^5.3.5",
"styled-normalize": "^8.0.7",
"styled-system": "^5.1.5"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@changesets/cli": "^2.23.0",
"@percy/cli": "^1.0.0-beta.70",
"@percy/cypress": "^3.1.1",
"@sparkpost/libby-react": "^0.0.58",
"@testing-library/cypress": "^7.0.4",
"@testing-library/react": "^11.2.6",
"@types/jest": "^26.0.24",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.3.1",
"autoprefixer": "^8.4.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.11.1",
"babel-preset-react-app": "^9.0.2",
"browser-sync": "^2.27.5",
"classnames": "^2.2.5",
"css-loader": "^3.6.0",
"cypress": "^6.5.0",
"cypress-plugin-tab": "^1.0.5",
"dotenv-cli": "^3.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.1",
"es-abstract": "^1.16.0",
"eslint": "^8.18.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-enzyme": "^7.1.2",
"jest-in-case": "^1.0.2",
"jest-styled-components": "^7.0.3",
"lint-staged": "^7.1.0",
"plugin-error": "^1.0.1",
"prettier": "^2.6.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-transition-group": "^4.3.0",
"resize-observer-polyfill": "^1.5.1",
"rimraf": "^3.0.2",
"sass": "^1.49.0",
"sass-loader": "^12.6.0",
"serve": "^13.0.2",
"start-server-and-test": "^1.11.7",
"style-loader": "^1.3.0",
"tslib": "^2.3.0",
"turbo": "^1.3.1",
"typescript": "^4.3.5"
},
"overrides": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"workspaces": [
"packages/design-tokens",
"packages/matchbox-css",
"packages/matchbox-icons",
"packages/matchbox-media",
"packages/matchbox"
],
"engines": {
"npm": "8.12.1",
"node": "16.15.1"
}
}