-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.37 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
{
"name": "app",
"description": "Upstand FM web application.",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"cy": "cypress open",
"sb": "start-storybook -p 9009 -s public",
"sb:build": "build-storybook -s public -c .storybook -o build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/upstandfm/app.git"
},
"author": "Daniël Illouz <[email protected]> (https://www.danillouz.dev/)",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/upstandfm/app/issues"
},
"homepage": "https://app.upstand.fm",
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"src/**/*.{js,jsx,json,css,md,html}": [
"prettier --single-quote --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"axios": "^0.19.2",
"focus-trap-react": "^6.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-transition-group": "^4.4.1",
"shortid": "^2.2.15",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@auth0/auth0-spa-js": "^1.11.0",
"@percy/storybook": "^3.3.1",
"@storybook/addon-a11y": "^5.3.21",
"@storybook/addon-actions": "^5.3.21",
"@storybook/addon-docs": "^5.3.21",
"@storybook/addon-links": "^5.3.21",
"@storybook/addon-viewport": "^5.3.21",
"@storybook/addons": "^5.3.21",
"@storybook/preset-create-react-app": "^2.1.2",
"@storybook/react": "^5.3.21",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^9.5.0",
"cypress": "^4.12.1",
"cypress-watch-and-reload": "^1.2.18",
"eslint-plugin-cypress": "^2.11.1",
"husky": "^4.2.5",
"jest-junit": "^10.0.0",
"lint-staged": "^10.2.13",
"netlify-cli": "^2.59.1",
"prettier": "^1.19.1",
"react-scripts": "^3.4.3"
}
}