This repository has been archived by the owner on Jun 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.85 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
{
"name": "computesafely",
"version": "0.1.1",
"description": "With both governments and corporate entities trampling over the privacy rights of people throughout much of the world, choosing the right tools is now more important than ever.",
"scripts": {
"now-build": "next build",
"dev": "next",
"start": "next start",
"build": "next build",
"flow": "flow",
"flow start": "flow start",
"flow stop": "flow stop",
"flow status": "flow status",
"flow coverage": "flow coverage",
"prettier": "prettier",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"lint:staged": "lint-staged"
},
"dependencies": {
"@sentry/browser": "^5.11.1",
"next": "^8.1.0",
"next-seo": "^1.12.0",
"react": "^16.8.0-alpha.0",
"react-clipboard.js": "^2.0.16",
"react-dom": "^16.8.0-alpha.0",
"react-markdown": "^4.1.0",
"styled-components": "^4.3.2",
"throttle-debounce": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
"@babel/preset-flow": "^7.0.0",
"@cypress/browserify-preprocessor": "^2.1.1",
"babel-eslint": "^10.0.3",
"babel-plugin-styled-components": "^1.10.6",
"babel-plugin-transform-define": "^1.3.2",
"cypress": "^3.8.3",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^4.3.0",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"flow-bin": "^0.101.1",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"prettier-eslint": "^8.8.2"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}