-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.78 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": "medium-clone",
"version": "1.0.0",
"description": "Web Project",
"main": "index.js",
"scripts": {
"start": "npm-run-all --parallel watch:api watch:web",
"watch:api": "nodemon --watch app --watch routes/api.js server/dev-api",
"watch:web": "nodemon --watch routes/web.js server/dev-web",
"build": "next build"
},
"author": "dsc712",
"license": "MIT",
"dependencies": {
"@zeit/next-css": "^1.0.1",
"antd": "^3.15.0",
"awesome-debounce-promise": "^2.1.0",
"axios": "^0.18.0",
"bcrypt": "^3.0.4",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^6.2.0",
"draft-js": "^0.10.5",
"draft-js-anchor-plugin": "^2.0.2",
"draft-js-buttons": "^2.0.1",
"draft-js-emoji-plugin": "^2.1.1",
"draft-js-export-html": "^1.3.3",
"draft-js-import-html": "^1.3.3",
"draft-js-inline-toolbar-plugin": "^3.0.0",
"draft-js-markdown-plugin": "^3.0.5",
"draft-js-plugins-editor": "^2.1.1",
"draft-js-prism-plugin": "^0.1.3",
"express": "^4.16.4",
"extract-text-webpack-plugin": "^3.0.2",
"global": "^4.3.2",
"js-cookie": "^2.2.0",
"jsonwebtoken": "^8.5.0",
"knex": "^0.19.5",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"mysql2": "^1.6.5",
"next": "^9.3.3",
"nprogress": "^0.2.0",
"objection": "^1.6.3",
"prismjs": "^1.15.0",
"rc-banner-anim": "^2.2.2",
"rc-tween-one": "^2.3.4",
"react": "^16.8.4",
"react-clap-button": "^1.0.8",
"react-dom": "^16.8.4",
"react-html-parser": "^2.0.2",
"react-infinite-scroll-component": "^4.5.2",
"react-redux": "^6.0.1",
"reading-time": "^1.1.3",
"redux": "^4.0.1",
"validator": "^10.11.0",
"nodemon": "^1.18.10",
"npm-run-all": "^4.1.5"
}
}