-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
109 lines (109 loc) · 3.35 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
{
"name": "@pubpub/editor",
"version": "7.2.2",
"description": "PubPub Collaborative Editor",
"main": "dist/index.js",
"author": "PubPub Team <[email protected]>",
"license": "GPL-2.0+",
"repository": {
"type": "git",
"url": "https://github.com/pubpub/pubpub-editor.git"
},
"scripts": {
"build": "npm run clean && babel src -d dist --copy-files",
"clean": "rm -rf dist && mkdir dist",
"install-git-hooks": "rm -f ./.git/hooks/* && cp ./.githooks/* ./.git/hooks && chmod +x ./.git/hooks/*",
"lint": "eslint src stories .storybook",
"prepublish-soon": "npm run lint && rm -rf node_modules && npm install && npm run build",
"prepublishOnly": "npm run build",
"pretty": "prettier --write '**/*.js'",
"start": "start-storybook -p 9002 -c .storybook",
"test": "jest --silent"
},
"dependencies": {
"camelcase-css": "^2.0.1",
"classnames": "^2.2.6",
"css": "^2.2.4",
"katex": "^0.10.2",
"prosemirror-collab": "^1.1.2",
"prosemirror-commands": "^1.0.8",
"prosemirror-compress-pubpub": "0.0.3",
"prosemirror-gapcursor": "^1.0.4",
"prosemirror-history": "^1.0.4",
"prosemirror-inputrules": "^1.0.4",
"prosemirror-keymap": "^1.0.2",
"prosemirror-model": "^1.7.4",
"prosemirror-schema-list": "^1.0.4",
"prosemirror-schema-table": "^0.22.0",
"prosemirror-state": "^1.2.4",
"prosemirror-tables": "^0.9.5",
"prosemirror-transform": "^1.1.5",
"prosemirror-view": "^1.12.1"
},
"peerDependencies": {
"firebase": "^7.2.2",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-transition-group": "^4.3.0",
"uuid": "^3.3.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-transform-react-constant-elements": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-options": "^5.2.5",
"@storybook/react": "^5.2.5",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"bourbon": "^5.0.1",
"css-loader": "^2.1.1",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^4.1.0",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"esm": "^3.2.25",
"file-loader": "^3.0.1",
"firebase": "^7.2.2",
"firebase-server": "^1.0.2",
"jest": "^24.8.0",
"js-beautify": "^1.10.0",
"node-sass": "^4.11.0",
"prettier": "^1.16.4",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.11.0",
"react-stylable-diff": "^2.0.0",
"react-transition-group": "^4.3.0",
"resolve-url-loader": "^3.1.1",
"sass-loader": "^7.0.3",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"uuid": "^3.3.2",
"webpack": "^4.29.6"
},
"engines": {
"node": "10.5.0"
},
"jest": {
"testEnvironment": "jsdom",
"moduleDirectories": [
"node_modules",
"<rootDir>/src"
],
"moduleNameMapper": {
"\\.[s]?css$": "<rootDir>/src/__tests__/utils/styleMock.js"
},
"testPathIgnorePatterns": [
"<rootDir>/src/__tests__/utils"
]
}
}