forked from babel/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.18 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
{
"name": "babel.github.io",
"private": true,
"version": "1.0.0",
"description": "",
"main": "",
"scripts": {
"start": "make serve",
"build": "make build",
"lint": "eslint --ext md --rule 'prettier/prettier: 0' docs",
"test": "remark _posts docs _includes README.md --quiet",
"flow": "flow",
"precommit": "flow && lint-staged"
},
"remarkConfig": {
"plugins": {
"preset-lint-recommended": true,
"lint-list-item-indent": false,
"lint-no-blockquote-without-caret": false,
"lint-no-literal-urls": false,
"lint-no-duplicate-headings-in-section": true,
"lint-no-empty-url": true
}
},
"author": "",
"license": "ISC",
"devDependencies": {
"async": "^2.5.0",
"babel-core": "^6.25.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"bootstrap-sass": "^3.3.1",
"eslint": "^3.15.0",
"eslint-config-babel": "^6.0.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-markdown": "^1.0.0-beta.3",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-react": "^7.2.1",
"flow-bin": "0.52",
"husky": "^0.14.3",
"lint-staged": "^4.0.3",
"node-fetch": "^1.7.1",
"prettier": "^1.5.3",
"remark-cli": "^3.0.0",
"remark-lint-list-item-indent": "^1.0.0",
"remark-lint-no-blockquote-without-caret": "^1.0.0",
"remark-lint-no-duplicate-headings-in-section": "^1.0.0",
"remark-lint-no-empty-url": "^1.0.0",
"remark-lint-no-literal-urls": "^1.0.0",
"remark-preset-lint-recommended": "^2.0.0",
"webpack": "^3.5.4",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"codemirror": "5.28.0",
"glamor": "2.20.39",
"lodash.camelcase": "^4.3.0",
"lodash.debounce": "^4.0.8",
"lz-string": "^1.4.4",
"react": "16.0.0-beta.3",
"react-dom": "16.0.0-beta.3",
"worker-loader": "^0.8.1"
},
"lint-staged": {
"js/**/*.js": [
"prettier --trailing-comma es5 --write",
"eslint --format=codeframe --fix",
"git add"
]
}
}