-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
125 lines (125 loc) · 3.69 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
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "scholar-draft",
"version": "0.2.60",
"description": "draft-js editor wrapper handling footnotes and inline/block assets connected to upstream logic",
"main": "build/index.js",
"scripts": {
"dev": "start-storybook -p 6006",
"build": "rm -rf build && gulp build",
"lint": "eslint src",
"test": "mocha --compilers js:@babel/register -R spec --recursive $(find src -name '*.spec.js')",
"autocommit-add": "git add build;git add docs",
"lint:fix": "eslint --fix src",
"lint:watch": "node_modules/eslint-watch/bin/esw --watch src",
"test:watch": "npm run test -- --watch",
"validate": "npm ls",
"build-storybook": "build-storybook -c .storybook -o docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peritext/scholar-draft.git"
},
"keywords": [
"draft-js"
],
"author": "Robin de Mourat",
"contributors": [
"Mengying Du",
"Guillaume Plique"
],
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/peritext/scholar-draft/issues"
},
"homepage": "https://github.com/peritext/scholar-draft#readme",
"pre-commit": [
"lint",
"test",
"build",
"build-storybook",
"autocommit-add"
],
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"add-module-exports",
"@babel/plugin-transform-runtime",
"@babel/plugin-proposal-export-default-from",
"@babel/plugin-proposal-class-properties",
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
"@babel/plugin-proposal-object-rest-spread"
]
},
"peerDependencies": {
"lodash": "^4.17.4",
"react": "^16.7.0-alpha",
"react-dom": "^16.7.0-alpha",
"draft-js": "^0.11.0",
"draftjs-utils": "^0.9.4"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@robindemourat/eslint-config": "git+https://github.com/robindemourat/eslint-config.git",
"@storybook/addon-actions": "^4.1.11",
"@storybook/addon-links": "^4.1.11",
"@storybook/addons": "^4.1.11",
"@storybook/react": "^4.1.11",
"acorn": "^6.0.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-__coverage__": "^11.0.0",
"babel-plugin-add-module-exports": "^1.0.0",
"better-error": "0.0.2",
"chai-enzyme": "^1.0.0-beta.1",
"css-loader": "^2.1.0",
"csscomb": "^4.0.1",
"enzyme": "^3.3.0",
"eslint": "^5.12.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"eslint-watch": "^4.0.2",
"file-loader": "^3.0.1",
"file-saver": "^2.0.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-strip-comments": "^2.4.5",
"image-webpack-loader": "^4.6.0",
"jest": "^24.0.0",
"mocha": "^5.2.0",
"node-sass": "^4.11.0",
"pre-commit": "^1.1.3",
"raw-loader": "^1.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.0",
"draft-js": "^0.11.0",
"draftjs-utils": "^0.9.4"
},
"dependencies": {
"@storybook/cli": "^4.1.11",
"d3-ease": "^1.0.5",
"react-custom-scrollbars": "^4.1.0",
"react-tooltip": "^3.3.0",
"uuid": "^3.0.1"
}
}