-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.3 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "yame-ui",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.15",
"@fortawesome/free-brands-svg-icons": "^5.7.2",
"@fortawesome/free-regular-svg-icons": "^5.7.2",
"@fortawesome/free-solid-svg-icons": "^5.7.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"@material-ui/core": "^3.9.2",
"@material-ui/styles": "^3.0.0-alpha.10",
"@types/classnames": "^2.2.7",
"@types/lodash.throttle": "^4.1.6",
"@types/node": "10.12.21",
"@types/react": "16.8.1",
"@types/react-dom": "16.0.11",
"@types/react-facebook-login": "^4.1.0",
"@types/react-redux": "^7.0.1",
"@types/react-router-dom": "^4.3.1",
"@types/redux": "^3.6.0",
"@types/showdown": "^1.9.2",
"@types/uuid": "^3.4.4",
"apollo-cache-inmemory": "^1.4.3",
"apollo-client": "^2.4.13",
"apollo-link": "^1.2.8",
"apollo-link-context": "^1.0.14",
"apollo-link-error": "^1.1.7",
"apollo-link-http": "^1.5.11",
"classnames": "^2.2.6",
"graphql": "^14.1.1",
"graphql-tag": "^2.10.1",
"husky": "^1.3.1",
"i": "^0.3.6",
"lint-staged": "^8.1.5",
"lodash.throttle": "^4.1.1",
"markdown-it": "^8.4.2",
"markdown-it-named-headings": "^1.1.0",
"npm": "^6.8.0",
"primer-markdown": "^4.0.0",
"promise-worker": "^2.0.1",
"react": "^16.8.0",
"react-apollo": "^2.4.1",
"react-apollo-hooks": "^0.4.3",
"react-dom": "^16.8.0",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.3",
"react-simplemde-editor": "^4.0.0",
"showdown": "^1.9.0",
"showdown-highlight": "^2.1.3",
"typescript": "3.3.1",
"uuid": "^3.3.2",
"webworker-promise": "^0.4.2",
"xss": "^1.0.3"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"format": "prettier --write '**/*.{ts,json,yml,yaml}'",
"format:check": "prettier --list-different '**/*.{ts,json,yml,yaml}'",
"lint:fix": "tslint --fix -p tsconfig.json -c tslint.json && npm run format",
"pretty": "prettier --write"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.tsx": [
"npm run pretty",
"npm run lint:fix"
],
"*.{html,css,yml,yaml,js}": [
"npm run pretty"
]
},
"devDependencies": {
"jest": "^23.6.0",
"node-sass": "^4.11.0",
"prettier": "^1.16.4",
"react-app-rewired": "^2.1.1",
"serverless": "^1.39.0",
"serverless-finch": "^2.3.2",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^3.6.0",
"typesafe-actions": "^3.0.0",
"worker-loader": "^2.0.0",
"workerize-loader": "^1.0.4"
}
}