-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.62 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
{
"name": "GitX",
"version": "1.0.1",
"license": "MIT",
"description": "Chrome extension for adding private comments in Github",
"main": "webpack.config.js",
"scripts": {
"start:f": "webpack-dev-server --mode development --open",
"dev": "webpack --mode development",
"client": "webpack --mode production",
"start": "nodemon -r esm server/app.js & nodemon heroku-ping-test.js",
"server": "DEBUG=express:* babel-node server/app.js",
"debug": "nodemon -r esm --inspect server/app.js"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^3.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^0.23.1",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"concurrently": "^4.1.1",
"esm": "^3.2.25",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"ejs": "^2.6.2",
"express": "^4.17.1",
"js-cookie": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.5",
"nodemon": "^1.19.1",
"path-parser": "^4.2.0",
"redis": "^2.8.0",
"showdown": "^1.9.0",
"util": "^0.12.1"
}
}