-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.88 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
{
"name": "code-x",
"version": "0.1.0",
"description": "A React visual design library",
"private": true,
"scripts": {
"build-docs": "lerna run build-storybook",
"install": "lerna bootstrap",
"lint": "eslint . --ext .js --fix --ext .jsx --fix",
"prettier": "prettier --write '**/*.(js|jsx|mdx)'",
"publish:dry-run": "lerna publish --no-git-tag-version --no-push --dist-tag beta",
"test": "npm run test:unit:ci && npm run test:int:ci",
"test:int": "cypress open-ct",
"test:int:ci": "cypress run-ct",
"test:unit": "jest --watch",
"test:unit:ci": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sdaconceicao/code-x.git"
},
"keywords": [
"react",
"asset",
"library"
],
"author": "Stephen da Conceicao",
"license": "ISC",
"bugs": {
"url": "https://github.com/sdaconceicao/code-x/issues"
},
"homepage": "https://github.com/sdaconceicao/code-x#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.16.0",
"@code-x/babel-preset": "./config/babel-preset",
"@cypress/react": "^5.9.4",
"@cypress/webpack-dev-server": "^1.4.0",
"@storybook/testing-react": "0.0.22",
"@testing-library/react": "^9.1.3",
"axe-core": "^4.3.3",
"cypress": "^8.3.1",
"cypress-axe": "^0.13.0",
"cypress-plugin-snapshots": "^1.4.4",
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "27.3.1",
"jest-environment-jsdom": "^27.0.6",
"lerna": "^3.18.1",
"lerna-update-wizard": "^0.17.8",
"prettier": "^2.5.1",
"react-scripts": "^4.0.3",
"webpack-dev-server": "^3.11.2"
}
}