forked from iterative/dvc.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.37 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
{
"name": "website",
"version": "1.0.0",
"description": "dvc.org – website source code",
"main": "index.js",
"scripts": {
"dev": "node server.js",
"build": "next build",
"test": "jest",
"start": "NODE_ENV=production node server.js",
"format-staged": "pretty-quick --staged --no-restage --bail",
"format-check": "prettier --check '{.,pages/**,src/**,static/**}/*.{js,jsx,md}'",
"lint-check": "eslint src pages",
"format-all": "prettier --write '{.,pages/**,src/**,static/**}/*.{js,jsx,md}'",
"format": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iterative/dvc.org.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/iterative/dvc.org/issues"
},
"homepage": "https://github.com/iterative/dvc.org#readme",
"dependencies": {
"color": "^3.1.2",
"dom-scroll-into-view": "^2.0.1",
"github-markdown-css": "^3.0.1",
"isomorphic-fetch": "^2.2.1",
"lodash.includes": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"lodash.startcase": "^4.4.0",
"lodash.throttle": "^4.1.1",
"lodash.topairs": "^4.3.0",
"micro-cors": "^0.1.1",
"next": "^9.1.6",
"perfect-scrollbar": "^1.4.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-collapse": "^4.0.3",
"react-collapsible": "^2.6.2",
"react-dom": "^16.12.0",
"react-ga": "^2.7.0",
"react-markdown": "^4.2.2",
"react-motion": "^0.5.2",
"react-popover": "^0.5.10",
"react-scroll": "^1.7.13",
"react-slick": "^0.25.2",
"react-syntax-highlighter": "^11.0.2",
"request": "^2.88.0",
"styled-components": "^4.4.1",
"styled-reset": "^4.0.8",
"unist-util-visit": "2.0.1"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-plugin-transform-define": "^2.0.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.17.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^10.0.0-1",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn format-staged && lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": "eslint"
}
}