-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 2.05 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": "buzzyblog",
"version": "1.0.0",
"description": "a CMS front end demo and an Admin Dashboard which can adopt various CMS platforms, such as wordpress, drupal, etc",
"main": "index.js",
"scripts": {
"next:start": "next start -p 8081",
"next:build": "NODE_ENV=production next build",
"next:dev": "next dev",
"dev": "nodemon server.js --ignore dist/",
"clean": "rm -rf node_modules && rm -rf dist/"
},
"author": "medmin <[email protected]>",
"license": "Apache-2.0",
"private": false,
"dependencies": {
"@fortawesome/fontawesome-free": "^5.10.2",
"@sentry/browser": "^5.9.1",
"@zeit/next-sass": "^1.0.1",
"@zeit/next-source-maps": "0.0.4-canary.1",
"axios": "^0.19.0",
"bulma": "^0.7.5",
"express": "^4.17.1",
"helmet": "^3.21.1",
"html-react-parser": "^0.9.1",
"lodash": "^4.17.15",
"next": "^9.3.2",
"node-sass": "^4.12.0",
"prismjs": "^1.17.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-app-polyfill": "^1.0.1",
"react-dom": "^16.8.6",
"react-ga": "^2.7.0",
"react-router-dom": "^5.0.1",
"styled-components": "^4.4.1",
"sweetalert2": "^8.17.1",
"typeface-roboto": "^0.0.75",
"validator": "^11.1.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@zeit/next-css": "^1.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^3.2.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.0.0",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^2.0.2",
"prettier": "1.18.2",
"style-loader": "^0.23.1",
"svg-inline-loader": "^0.8.0",
"url-loader": "^2.0.0",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.1"
}
}