-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
66 lines (66 loc) · 1.63 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
{
"name": "riot-embedded",
"version": "1.0.0",
"description": "Riot Embedded",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode production",
"dev": "webpack --mode development",
"start": "webpack-dev-server --config './webpack.config.js'",
"lint": "eslint . --ext .js,.jsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arnav-t/riot-embedded.git"
},
"keywords": [
"Riot"
],
"author": "arnav-t",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/arnav-t/riot-embedded/issues"
},
"homepage": "https://github.com/arnav-t/riot-embedded#readme",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@svgr/webpack": "^5.4.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"css-loader": "^2.1.1",
"eslint": "^7.0.0",
"eslint-plugin-react": "^7.19.0",
"node-sass": "^4.14.1",
"sass-loader": "^8.0.2",
"style-loader": "^0.23.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@babel/preset-react": "^7.9.4",
"commonmark": "^0.29.1",
"linkifyjs": "^2.1.9",
"matrix-js-sdk": "^1.2.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sanitize-html": "^2.3.2"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-react"
]
}
}