forked from suddi/suddi.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.85 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
{
"name": "suddi.github.io",
"private": true,
"description": "Sudharshan Ravindran personal site",
"version": "1.2.2",
"homepage": "https://suddi.github.io",
"author": {
"name": "Sudharshan Ravindran",
"email": "suddi@mail.io",
"url": "https://suddi.github.io"
},
"repository": {
"type": "git",
"url": "https://github.com/suddi/suddi.github.io"
},
"bugs": {
"url": "https://github.com/suddi/suddi.github.io/issues"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "https://github.com/suddi/suddi.github.io/LICENSE"
}
],
"engines": {
"node": ">= 4.0.0",
"npm": ">= 2.0.0"
},
"scripts": {
"bundle": "webpack -p --progress",
"deploy": "webpack -p --progress --config webpack.deploy.js",
"lint": "eslint .",
"prepush": "npm run lint && npm run security-check",
"security-check": "nsp check --output summary",
"start": "webpack-dev-server --hot --inline",
"test": "npm run lint && npm run security-check && npm run bundle"
},
"dependencies": {},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-react": "^6.0.0",
"create-react-class": "^15.6.0",
"eslint": "^4.0.0",
"eslint-config-suddi": "^4.0.0",
"eslint-plugin-react": "^7.0.0",
"husky": "^0.14.0",
"moment": "^2.19.4",
"nsp": "^2.0.0",
"nuka-carousel": "^2.0.0",
"react": "^15.0.0",
"react-addons-css-transition-group": "^15.0.0",
"react-dom": "^15.0.0",
"react-modal": "^2.0.0",
"react-router": "^3.0.0",
"superagent": "^3.8.0",
"webpack": "^3.0.0",
"webpack-dev-server": "2.7.1",
"webpack-s3-plugin": "^0.9.0"
},
"eslintConfig": {
"extends": "suddi/frontend",
"rules": {
"react/no-deprecated": "off",
"react/no-array-index-key": "off"
}
}
}