-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
62 lines (62 loc) · 1.59 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
{
"name": "p2p-editor",
"version": "0.1.0",
"description": "P2P text/code editor",
"repository": {
"type": "git",
"url": "git+https://github.com/CodelyTV/p2p-editor.git"
},
"maintainers": [
{
"name": "Daniel Santamaría",
"email": "santaka87@gmail.com"
}
],
"license": "MIT",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack",
"watch": "webpack --watch",
"lint": "eslint src",
"test": "jest"
},
"bugs": {
"url": "https://github.com/CodelyTV/p2p-editor/issues"
},
"homepage": "https://github.com/CodelyTV/p2p-editor#readme",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.5",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^3.0.0",
"eslint": "^5.15.3",
"eslint-loader": "^2.1.2",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "24.9.0",
"mini-css-extract-plugin": "^0.7.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"url-loader": "^2.0.0",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"ace-builds": "^1.4.2",
"dotenv-webpack": "^1.7.0",
"hypercore": "^6.24.0",
"random-access-memory": "^3.1.1",
"react-redux": "^7.0.3",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"signalhub": "^4.9.0",
"webpack-dev-server": "^3.1.14",
"webrtc-swarm": "^2.9.0"
}
}