forked from alexpate/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.4 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "docs",
"version": "5.15.15",
"private": true,
"scripts": {
"dev": "./scripts/now-examples-fetch.sh && next",
"build": "./scripts/now-examples-fetch.sh && cross-env NODE_ENV=production next build",
"now-build": "./scripts/now-examples-fetch.sh && cross-env NODE_ENV=production next build && next export -o dist",
"start": "cross-env NODE_ENV=production next start",
"export": "next export",
"lint": "eslint .",
"lint:staged": "lint-staged",
"test": "npm run lint",
"last:edited": "node scripts/last-edited && git add lib/data/last-edited.json"
},
"dependencies": {
"@mdx-js/loader": "0.15.5",
"@mdx-js/mdx": "0.15.5",
"@mdx-js/tag": "0.15.0",
"@sindresorhus/slugify": "0.6.0",
"@skidding/react-codemirror": "1.0.2",
"@zeit/next-mdx": "1.2.0",
"async-retry": "1.2.3",
"babel-plugin-root-import": "6.1.0",
"babel-plugin-transform-define": "1.3.0",
"classnames": "2.2.6",
"codemirror": "5.31.0",
"content-type": "1.0.4",
"cross-env": "5.2.0",
"date-fns": "1.29.0",
"fs-extra": "7.0.1",
"intersection-observer": "0.5.0",
"isomorphic-unfetch": "2.0.0",
"js-cookie": "2.2.0",
"lodash.debounce": "4.0.8",
"mitt": "1.1.2",
"next": "7.0.2-canary.33",
"nprogress": "0.2.0",
"prop-types": "15.6.2",
"ramda": "0.25.0",
"react": "16.6.3",
"react-dom": "16.6.3",
"react-markdown": "4.0.3",
"scroll-into-view-if-needed": "1.1.0",
"unist-util-filter": "1.0.0",
"unist-util-find-all-after": "1.0.2",
"unist-util-find-all-before": "2.0.2",
"unist-util-find-all-between": "1.0.2",
"unist-util-map": "^1.0.4",
"unist-util-select": "1.5.0",
"unist-util-visit": "1.4.0"
},
"devDependencies": {
"babel-eslint": "8.2.3",
"eslint": "4.2.0",
"eslint-plugin-import-b5a962": "2.3.0",
"eslint-plugin-react": "7.1.0",
"lint-staged": "4.0.0",
"pre-commit": "1.2.2",
"prettier": "1.7.4"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write --no-semi --single-quote",
"git add"
]
},
"pre-commit": [
"last:edited",
"lint:staged"
],
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"impliedStrict": true,
"experimentalObjectRestSpread": true
},
"allowImportExportEverywhere": true
},
"plugins": [
"react",
"import-b5a962"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"globals": {
"VERSION": true,
"IMAGE_ASSETS_URL": true,
"VIDEO_ASSETS_URL": true,
"RAW_ASSETS_URL": true
},
"env": {
"es6": true,
"browser": true,
"node": true
},
"rules": {
"func-names": [
"error",
"as-needed"
],
"no-shadow": "error",
"import-b5a962/no-mutable-exports": "error",
"import-b5a962/no-anonymous-default-export": [
"error",
{
"allowArray": true,
"allowArrowFunction": true,
"allowLiteral": true,
"allowObject": true
}
],
"no-extra-semi": 0,
"no-useless-escape": 0,
"react/prop-types": 0,
"react/react-in-jsx-scope": 0,
"react/no-unescaped-entities": 0,
"react/jsx-no-target-blank": 0,
"react/no-string-refs": 0
}
}
}