-
Notifications
You must be signed in to change notification settings - Fork 344
/
package.json
123 lines (123 loc) · 2.77 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
{
"name": "front",
"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",
"deploy": "node scripts/deploy"
},
"babel": {
"presets": [
"next/babel"
],
"plugins": [
[
"transform-define",
"./env-config.js"
],
"markdown-in-js/babel"
]
},
"dependencies": {
"babel-plugin-transform-define": "1.3.0",
"babel-runtime": "6.23.0",
"cross-env": "5.0.1",
"glob-promise": "^3.1.0",
"jsonwebtoken": "^7.4.1",
"lodash.debounce": "^4.0.8",
"markdown-in-js": "1.1.3",
"mitt": "1.1.2",
"next": "beta",
"nprogress": "0.2.0",
"prop-types": "15.5.8",
"query-string": "4.3.4",
"react": "15.5.4",
"react-dom": "15.5.4",
"scroll-into-view-if-needed": "1.1.0",
"smoothscroll-polyfill": "0.3.5"
},
"devDependencies": {
"babel-eslint": "7.2.3",
"eslint": "3.19.0",
"eslint-plugin-import-b5a962": "2.3.0",
"eslint-plugin-react": "7.1.0",
"github": "^9.2.0",
"lint-staged": "4.0.0",
"now": "^7.1.1",
"pre-commit": "1.2.2",
"prettier": "1.3.1",
"shelljs": "^0.7.8"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write --no-semi --single-quote",
"git add"
]
},
"pre-commit": "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,
"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
}
}
}