-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.66 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
{
"name": "markdown-collaboration",
"version": "1.0.0",
"description": "Markdown Collaboration Tool",
"main": "server.js",
"scripts": {
"start": "node server.js",
"lint": "eslint src",
"test": "BABEL_JEST_STAGE=0 jest"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
],
"testFileExtensions": [
"js"
],
"moduleFileExtensions": [
"js",
"json"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/knowbody/markdown-collaboration.git"
},
"author": "Mateusz Zatorski <[email protected]> (https://github.com/knowbody)",
"license": "MIT",
"bugs": {
"url": "https://github.com/knowbody/markdown-collaboration/issues"
},
"homepage": "https://github.com/knowbody/markdown-collaboration#readme",
"devDependencies": {
"babel-core": "^5.8.30",
"babel-eslint": "^4.1.3",
"babel-jest": "^5.3.0",
"babel-loader": "^5.3.2",
"babel-plugin-react-transform": "^1.1.1",
"eslint": "^1.7.3",
"eslint-config-rackt": "^1.1.0",
"eslint-plugin-react": "^3.6.3",
"express": "^4.13.3",
"jest-cli": "^0.6.1",
"react-addons-test-utils": "^0.14.3",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.1.1",
"webpack": "^1.12.2",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.4.1"
},
"dependencies": {
"highlight.js": "^8.9.1",
"history": "^1.13.1",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-remarkable": "^1.1.1",
"react-router": "v1.0.0"
}
}