-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.65 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
{
"name": "risevision.github.io",
"version": "1.0.0",
"description": "RISE Vision Developer Docs",
"main": "dist/index.js",
"repository": "https://github.com/RiseVision/risevision.github.io",
"author": "Julian Popescu <jpopesculian@gmail.com>",
"license": "MIT",
"scripts": {
"build": "webpack --config webpack.prod.js",
"build:dev": "webpack-dev-server --config webpack.config.js",
"build:docs": "./scripts/generate_docs.sh",
"build:all": "npm run build:docs && npm run build",
"postinstall": "./scripts/init_submodules.sh"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@hugmanrique/react-markdown-loader": "^0.0.2",
"@types/classnames": "^2.2.6",
"@types/lodash": "^4.14.117",
"@types/mark.js": "^8.11.1",
"@types/node": "^10.11.5",
"@types/react": "^16.4.16",
"@types/react-dom": "^16.0.9",
"@types/react-tabs": "^2.3.0",
"@types/styled-components": "^4.1.4",
"@types/webpack": "^4.4.15",
"@types/webpack-env": "^1.13.6",
"autoprefixer": "^9.1.5",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.0",
"emotion": "^9.2.12",
"fork-ts-checker-webpack-plugin": "^0.4.10",
"html-minifier": "^3.5.20",
"postcss-global-import": "^1.0.6",
"postcss-icss-values": "^2.0.1",
"postcss-import": "^12.0.0",
"postcss-loader": "^3.0.0",
"postcss-mixins": "^6.2.0",
"postcss-nested": "^4.1.0",
"postcss-preset-env": "^6.0.10",
"react-hot-loader": "^4.3.11",
"rehype-highlight": "^2.2.0",
"remark": "^10.0.0",
"remark-normalize-headings": "^1.0.0",
"remark-outer-toc": "^1.0.0",
"remark-slug": "^5.1.0",
"style-loader": "^0.23.1",
"stylelint-config-standard": "^18.2.0",
"svg-react-loader": "^0.4.6",
"ts-loader": "^5.2.1",
"tslint": "^5.11.0",
"typescript": "^3.1.1",
"typings-for-css-modules-loader": "^1.7.0",
"uglify-js": "^3.4.9",
"uglifycss": "^0.0.29",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"dependencies": {
"@babel/runtime": "^7.1.2",
"classnames": "^2.2.6",
"highlight.js": "^9.12.0",
"lodash": "^4.17.11",
"mobx": "^5.5.0",
"mobx-react": "^5.2.8",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-feather": "^1.1.4",
"react-iframe": "^1.3.3",
"react-spinners": "^0.4.5",
"redoc": "^2.0.0-rc.0",
"sanitize.css": "^8.0.0",
"strip-indent": "^2.0.0",
"styled-components": "^4.0.1"
}
}