-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "maintenance-guidelines-for-organization.github.io",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/file-saver": "^0.0.1",
"@types/prop-types": "^15.5.2",
"file-saver": "^1.3.3",
"github-api": "^3.0.0",
"office-ui-fabric-react": "^5.8.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-remarkable": "^1.1.3",
"react-scripts-ts": "2.7.0"
},
"scripts": {
"start": "react-scripts-ts start",
"build": "react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"prettier": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css}'",
"precommit": "lint-staged",
"postcommit": "git reset"
},
"devDependencies": {
"@alrra/travis-scripts": "^3.0.1",
"@types/jest": "^21.1.2",
"@types/node": "^8.0.34",
"@types/react": "^16.0.10",
"@types/react-dom": "^16.0.1",
"husky": "^0.14.3",
"lint-staged": "^4.2.3",
"prettier": "^1.7.4"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
}
}