-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.41 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.41 KB
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
{
"name": "leetcode-javascript",
"version": "1.0.0",
"description": "My Leetcode Problems Solutions",
"private": false,
"keywords": [
"leetcode",
"javascript"
],
"author": {
"name": "Mochi",
"url": "https://github.com/foprc"
},
"repository": {
"type": "git",
"url": "https://github.com/foprc/leetcode-javascript"
},
"bugs": {
"url": "https://github.com/foprc/leetcode-javascript/issues"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.6.0"
},
"license": "MIT",
"scripts": {
"pre-lint": "echo \"God is watching you...\"",
"lint": "eslint src --ext .js --cache --fix"
},
"pre-commit": [
"pre-lint",
"lint"
],
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-import": "^1.7.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.8.2",
"prettier": "^1.15.2",
"pre-commit": "^1.2.2",
"webpack": "4.8.3",
"webpack-cli": "2.1.3",
"webpack-dev-server": "3.1.4"
}
}