forked from brianlovin/security-checklist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.06 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
{
"name": "security-checklist",
"version": "0.1.0",
"description": "A checklist for staying safe on the internet",
"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": "^4.5.2",
"next": "^7.0.2",
"next-seo": "^1.9.0",
"react": "^16.8.0-alpha.0",
"react-clipboard.js": "^2.0.2",
"react-dom": "^16.8.0-alpha.0",
"react-markdown": "^4.0.6",
"styled-components": "^4.1.3",
"throttle-debounce": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-flow-strip-types": "^7.2.3",
"@babel/preset-flow": "^7.0.0",
"@cypress/browserify-preprocessor": "^1.1.2",
"babel-eslint": "^10.0.1",
"babel-plugin-styled-components": "^1.10.0",
"babel-plugin-transform-define": "^1.3.1",
"cypress": "^3.1.4",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.5.0",
"eslint-config-react-app": "^3.0.6",
"eslint-plugin-flowtype": "^3.2.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.3",
"flow-bin": "^0.90.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"prettier-eslint": "^8.8.2"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"pre-commit": "lint:staged",
"repository": {
"type": "git",
"url": "git+https://github.com/brianlovin/security-checklist.git"
},
"author": "Brian Lovin",
"license": "MIT",
"bugs": {
"url": "https://github.com/brianlovin/security-checklist/issues"
},
"homepage": "https://github.com/brianlovin/security-checklist#readme"
}