forked from iotaledger/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.14 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": "iota-docs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next -p 5800",
"build": "cross-env NODE_ENV=production next build",
"export": "cross-env NODE_ENV=production next export",
"start": "cross-env NODE_ENV=production next start",
"lint": "eslint .",
"lint:staged": "lint-staged",
"test": "npm run lint",
"last:edited": "node scripts/last-edited",
"deploy": "now -t $NOW_TOKEN --team iota --npm",
"alias:develop": "now -t $NOW_TOKEN --team iota alias -A ci-staging.json",
"alias:master": "now -t $NOW_TOKEN --team iota alias -A ci-prod.json"
},
"babel": {
"presets": [
"next/babel"
]
},
"dependencies": {
"@skidding/react-codemirror": "1.0.2",
"babel-plugin-transform-define": "1.3.0",
"babel-runtime": "6.26.0",
"codemirror": "5.38.0",
"cross-env": "5.2.0",
"date-fns": "1.29.0",
"glob": "7.1.2",
"glob-promise": "3.4.0",
"intersection-observer": "0.5.0",
"isomorphic-fetch": "2.2.1",
"jsonwebtoken": "8.3.0",
"lodash.debounce": "4.0.8",
"mitt": "1.1.2",
"next": "6.0.3",
"nprogress": "0.2.0",
"prop-types": "15.5.8",
"query-string": "6.1.0",
"react": "16.4.1",
"react-dom": "16.4.1",
"react-syntax-highlighter": "^8.0.1",
"scroll-into-view-if-needed": "2.2.6",
"smoothscroll-polyfill": "0.4.3"
},
"devDependencies": {
"@mdx-js/loader": "^0.11.0",
"@mdx-js/mdx": "^0.10.1",
"babel-eslint": "8.2.3",
"eslint": "4.2.0",
"eslint-plugin-import-b5a962": "2.3.0",
"eslint-plugin-react": "7.1.0",
"lint-staged": "7.2.0",
"pre-commit": "1.2.2",
"prettier": "1.13.5"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write --no-semi --single-quote",
"git add"
]
},
"pre-commit": [
"last:edited",
"lint:staged"
],
"greenkeeper": {
"ignore": [
"prettier"
]
},
"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,
"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
}
}
}