-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.46 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.46 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "react-spectrum-parcel-starter",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "THEME_LIGHT=true THEME_DARKEST=true parcel serve src/index.html --open",
"dev:https": "THEME_LIGHT=true THEME_DARKEST=true parcel serve src/index.html --open --https",
"build": "THEME_LIGHT=true THEME_DARKEST=true parcel build src/index.html",
"lint": "eslint src/",
"lint:fix": "eslint --fix src/",
"format": "prettier --check \"src/**/*.{ts,tsx,js,css,json,md}\"",
"format:fix": "prettier --write \"src/**/*.{ts,tsx,js,css,json,md}\"",
"storybook": "start-storybook -p 6006 --quiet",
"build-storybook": "build-storybook --output-dir storybook",
"deploy-storybook": "storybook-to-ghpages --ci --out=storybook",
"ts-check": "tsc --build --pretty",
"ts-check:watch": "tsc --build --pretty --watch",
"pretest": "npm run lint:css",
"test": "jest --color --watch",
"test:ci": "jest --color --ci",
"test:allthethings": "yarn test:ci && echo && yarn lint && echo && yarn lint:css && echo && yarn ts-check && echo && yarn format",
"prepare": "husky install",
"lint:css": "stylelint --formatter=verbose 'src/**/*.css'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/msabramo/react-spectrum-parcel-starter"
},
"keywords": [],
"author": {
"name": "Marc Abramowitz",
"url": "https://github.com/msabramo"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/msabramo/react-spectrum-parcel-starter/issues"
},
"homepage": "https://github.com/msabramo/react-spectrum-parcel-starter",
"dependencies": {
"@adobe/react-spectrum": "^3.15.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.0.1",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-controls": "^6.2.9",
"@storybook/addon-docs": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/addons": "^6.2.9",
"@storybook/react": "^6.2.9",
"@storybook/source-loader": "^6.2.9",
"@storybook/storybook-deployer": "^2.8.7",
"@storybook/theming": "^6.2.9",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.37",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"clean-webpack-plugin": "^3.0.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.5",
"jsdom": "^19.0.0",
"lint-staged": "^12.1.2",
"mini-css-extract-plugin": "^1.6.0",
"parcel": "^2.0.1",
"prettier": "^2.5.1",
"storybook": "^6.4.9",
"stylelint": "^14.1.0",
"stylelint-config-standard": "^24.0.0",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"typescript-plugin-styled-components": "^1.5.0",
"webpack": "4.46.0"
},
"lint-staged": {
"*.{css,json,md}": [
"yarn format:fix"
],
"*.{js,jsx,ts,tsx}": [
"yarn format:fix",
"yarn lint:fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}