-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
113 lines (113 loc) · 3.1 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
{
"name": "npms-www",
"version": "0.1.0",
"description": "The http://npms.io website",
"scripts": {
"lint": "eslint . --ignore-path .gitignore && stylelint \"**/*.css\" --ignore-path .gitignore",
"build": "./scripts/build",
"serve": "./scripts/serve",
"postinstall": "./scripts/init",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/npms-io/npms-www.git"
},
"keywords": [
"npm",
"npms",
"npmsearch",
"npmsearch",
"search",
"node",
"module",
"package"
],
"author": "André Cruz <[email protected]>",
"license": "MIT",
"bugs": "https://github.com/npms-io/npms-www/issues",
"homepage": "https://github.com/npms-io/npms-www",
"dependencies": {
"arrival": "^1.2.2",
"axios": "^0.15.0",
"bluebird": "^3.5.5",
"colour-me-life": "^2.0.0",
"dom4": "^1.8.3",
"lodash": "^4.0.0",
"positions": "^1.6.1",
"query-string": "^4.1.0",
"rc-tooltip": "^3.3.2",
"react": "^15.0.0",
"react-addons-css-transition-group": "^15.1.0",
"react-addons-shallow-compare": "^15.0.1",
"react-autosuggest": "^7.0.0",
"react-circular-progressbar": "^0.1.2",
"react-dom": "^15.0.0",
"react-gravatar": "^2.4.3",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.2",
"react-router-scroll": "^0.4.0",
"react-waypoint": "^4.0.2",
"redux": "^3.5.1",
"redux-promise-middleware": "^4.0.0",
"redux-thunk": "^2.0.1",
"s-ago": "^1.1.0",
"smoothscroll-polyfill": "^0.3.0",
"snapsvg": "^0.4.0"
},
"devDependencies": {
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"autoprefixer": "^6.2.2",
"babel-core": "^6.3.15",
"babel-loader": "^6.2.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-react-constant-elements": "^6.4.0",
"babel-plugin-transform-react-inline-elements": "^6.4.0",
"babel-plugin-transform-react-remove-prop-types": "^0.2.5",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.0.1",
"babel-preset-stage-2": "^6.3.13",
"chalk": "^2.0.0",
"css-loader": "^0.26.0",
"diff-json-structure": "^1.0.0",
"eslint": "^5.8.0",
"eslint-config-moxy": "^6.1.1",
"extract-text-webpack-plugin": "^1.0.0",
"file-loader": "^0.9.0",
"html-minifier": "^3.0.2",
"husky": "^1.1.2",
"imports-loader": "^0.6.5",
"json-loader": "^0.5.4",
"lint-staged": "^8.0.4",
"planify": "^1.0.0",
"postcss-loader": "^1.1.0",
"rimraf": "^2.4.4",
"style-loader": "^0.13.0",
"stylelint": "^9.7.1",
"stylelint-config-moxy": "^5.0.0",
"svg-sprite-loader": "0.0.31",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0",
"yargs": "^6.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}