-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.52 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
{
"name": "pristine",
"version": "1.1.0",
"description": "Simple blog website built in react",
"main": "index.js",
"scripts": {
"watch": "webpack --watch --config webpack.dev.js",
"build": "webpack --config webpack.prod.js"
},
"keywords": [
"Blog",
"Personal",
"Website"
],
"author": "Roger Tsang",
"repository": "https://github.com/RogerTsang/pristine",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.0",
"clean-webpack-plugin": "^0.1.19",
"eslint": "^5.5.0",
"eslint-plugin-react": "^7.11.1"
},
"dependencies": {
"@material-ui/core": "^1.5.1",
"@material-ui/icons": "^2.0.3",
"connected-react-router": "^4.4.1",
"css-loader": "^1.0.0",
"file-loader": "^2.0.0",
"highlight.js": "^9.12.0",
"html-webpack-plugin": "^3.2.0",
"js-cookie": "^2.2.1",
"lodash": "^4.17.13",
"markdown-it": "^8.4.1",
"markdown-it-latex": "^0.2.0",
"mobile-detect": "^1.4.1",
"moment": "^2.22.2",
"password-validator": "^4.1.1",
"react": "^16.3.0",
"react-ace": "^6.0.0",
"react-dom": "^16.3.0",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"style-loader": "^0.23.0",
"url": "^0.11.0",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-merge": "^4.1.2"
}
}