forked from iotaledger/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.07 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
{
"name": "iota-introduction",
"version": "3.9.1",
"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"],
"plugins": [["transform-define", "./env-config.js"], "markdown-in-js/babel"]
},
"dependencies": {
"@skidding/react-codemirror": "1.0.2",
"babel-plugin-transform-define": "1.3.0",
"babel-runtime": "6.23.0",
"codemirror": "5.31.0",
"cross-env": "5.0.1",
"date-fns": "1.29.0",
"glob": "7.1.2",
"glob-promise": "3.1.0",
"intersection-observer": "0.4.2",
"isomorphic-fetch": "2.2.1",
"jsonwebtoken": "7.4.1",
"lodash.debounce": "4.0.8",
"markdown-in-js": "1.1.3",
"mitt": "1.1.2",
"next": "4.2.3",
"nprogress": "0.2.0",
"prop-types": "15.5.8",
"query-string": "4.3.4",
"react": "16.1.1",
"react-dom": "16.1.1",
"scroll-into-view-if-needed": "1.1.0",
"smoothscroll-polyfill": "0.3.5"
},
"devDependencies": {
"babel-eslint": "7.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",
"shelljs": "0.7.8"
},
"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
}
}
}