forked from PawCorp/joi.how
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.75 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.75 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
{
"name": "joihow",
"version": "1.6.0",
"private": true,
"dependencies": {
"@msgpack/msgpack": "^1.9.3",
"@reach/router": "^1.3.3",
"@types/axios": "^0.14.0",
"@types/jest": "24.0.13",
"@types/lodash": "^4.14.149",
"@types/marked": "^0.7.2",
"@types/node": "12.0.2",
"@types/reach__router": "^1.3.5",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^7.1.8",
"@types/react-sparklines": "^1.7.0",
"@types/redux": "^3.6.0",
"@types/styled-components": "^4.4.3",
"axios": "^0.19.2",
"axios-jsonp": "^1.0.2",
"buttplug": "1.0.17",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"lodash": "^4.17.15",
"marked": "^0.8.0",
"prettier": "^1.17.1",
"raw.macro": "^0.3.0",
"react": "^16.13.1",
"react-app-rewired": "^2.2.1",
"react-dom": "^16.13.1",
"react-ga": "^2.7.0",
"react-redux": "^7.2.0",
"react-scripts": "^3.4.1",
"react-scripts-plugin-no-minify": "^0.4.0",
"react-sparklines": "^1.7.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"styled-components": "^4.4.1",
"tone": "^13.4.9",
"typescript": "^3.9.2",
"wafxr": "^0.1.1",
"wasm-loader": "^1.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"prettier --write",
"git add"
]
},
"config": {
"git-tag-version": false,
"commit-hooks": false
},
"scripts": {
"start": "PORT=3006 react-app-rewired start",
"build": "react-app-rewired build",
"test:watch": "react-app-rewired test",
"test": "jest --passWithNoTests",
"eject": "react-scripts eject",
"lint": "prettier --write 'src/**/*.{js,jsx,ts,tsx,json}'",
"postversion": "PACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && echo \"\n## $PACKAGE_VERSION - `date -R`\n* \" >> src/release-notes.md && echo '\n\n\n-------\nAdd release notes to src/relase-notes.md then run {npm run live}'",
"live": "PACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag -d v$PACKAGE_VERSION && git commit -am \"release version $PACKAGE_VERSION\" && git tag \"v$PACKAGE_VERSION\" && git push origin master --tags && git checkout develop && git merge master"
},
"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"
]
},
"devDependencies": {
"@types/tone": "git://github.com/Tonejs/TypeScript.git"
}
}