-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.8 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
{
"name": "react-citeproc",
"version": "0.1.10",
"description": "react wrapping components for csl-based citations",
"main": "build/index.js",
"scripts": {
"build": "rm -rf build && gulp build",
"lint": "eslint --fix src",
"comb": "csscomb src",
"test": "mocha --compilers js:babel-core/register -R spec --recursive $(find src -name '*.spec.js')",
"storybook": "start-storybook -p 6008",
"build-storybook": "build-storybook",
"git-add-build": "git add build"
},
"pre-commit": [
"lint",
"build",
"comb",
"git-add-build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/robindemourat/react-citeproc.git"
},
"author": "Robin de Mourat",
"license": "MIT",
"bugs": {
"url": "https://github.com/robindemourat/react-citeproc/issues"
},
"homepage": "https://github.com/robindemourat/react-citeproc#readme",
"dependencies": {
"citeproc": "^2.1.204",
"html-to-react": "^1.2.8",
"lodash": "^4.17.10",
"react": "^15.3.2",
"storybook": "0.0.0",
"superagent": "^3.2.1",
"uuid": "^2.0.3"
},
"devDependencies": {
"@kadira/storybook": "^2.21.0",
"@yomguithereal/eslint-config": "^3.0.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators": "^6.13.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"csscomb": "^3.1.7",
"eslint": "^3.7.1",
"eslint-plugin-react": "^6.3.0",
"file-loader": "^0.9.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-strip-comments": "^2.4.5",
"kotatsu": "^0.15.2",
"mocha": "^3.1.0",
"node-sass": "^3.8.0",
"pre-commit": "^1.1.3",
"raw-loader": "^0.5.1",
"react-dom": "^15.5.4",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1"
},
"babel": {
"plugins": [
"transform-decorators-legacy",
"transform-decorators",
"transform-object-rest-spread",
"transform-class-properties",
"add-module-exports",
"transform-runtime",
"transform-export-extensions"
],
"presets": [
"es2015",
"react"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"@yomguithereal/eslint-config/es7",
"@yomguithereal/eslint-config/react"
],
"rules": {
"react/no-set-state": 0,
"react/no-did-update-set-state": 0,
"react/no-did-mount-set-state": 0,
"react/forbid-prop-types": 0
}
}
}