This repository has been archived by the owner on Oct 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
84 lines (84 loc) · 2.36 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
{
"name": "pathephone-web",
"version": "0.0.0-development",
"private": true,
"homepage": "https://pathephone.github.io/pathephone-web",
"repository": {
"type": "git",
"url": "https://github.com/pathephone/pathephone-web.git"
},
"dependencies": {
"@commitlint/cli": "8.3.3",
"@commitlint/config-conventional": "7.6.0",
"@draftup/react-use-promise": "^1.0.1",
"@semantic-release/changelog": "3.0.2",
"@semantic-release/commit-analyzer": "6.1.0",
"@semantic-release/exec": "3.3.2",
"@semantic-release/git": "7.0.8",
"@semantic-release/release-notes-generator": "7.1.4",
"@testing-library/react": "9.3.2",
"@types/jest": "24.0.18",
"@types/node": "12.7.12",
"@types/react": "16.9.11",
"@types/react-dom": "16.9.4",
"@types/react-router-dom": "5.1.0",
"file-type": "12.3.0",
"gh-pages": "2.0.1",
"husky": "2.4.1",
"lint-staged": "8.2.1",
"music-metadata-browser": "0.7.1",
"prettier": "1.19.1",
"react": "16.11.0",
"react-dom": "16.11.0",
"react-event-boundary": "1.0.7",
"react-router-dom": "5.1.2",
"react-scripts": "3.3.0",
"typescript": "3.7.3"
},
"scripts": {
"start": "react-scripts start",
"start:prod": "REACT_APP__SERVICE_TYPE=production react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"style:write": "prettier \"src/**/*.{js,jsx,css}\" --write",
"style:check": "prettier \"src/**/*.{js,jsx,css}\" --check",
"commitlint": "commitlint from=HEAD",
"predeploy": "npm run build",
"deploy": "node ./publish.js",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": "react-app"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@storybook/addon-actions": "^5.2.1",
"@storybook/addon-links": "^5.2.1",
"@storybook/addons": "^5.2.1",
"@storybook/react": "^5.2.1"
}
}