-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
63 lines (63 loc) · 1.54 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
{
"name": "CodeRunner",
"version": "1.0.0",
"description": "Run code online",
"main": "index.js",
"engines": {
"node": "8.4.0",
"npm": "5.3.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon index.js",
"client": "webpack --watch --mode development",
"build": "webpack",
"format": "prettier --write \"**/*.js\"",
"deploy": "git push heroku master",
"heroku-postbuild": "npm run build",
"precommit": "lint-staged"
},
"prettier": {
"singleQuote": true
},
"lint-staged": {
"*.js": [
"npm run format",
"git add"
]
},
"keywords": [],
"author": "Aditya Agarwal <[email protected]> (http://adi.surge.sh/)",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.8.3",
"prettier": "1.7.4",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
},
"dependencies": {
"ace": "^1.3.0",
"body-parser": "^1.18.2",
"brace": "^0.10.0",
"compression": "^1.7.1",
"dotenv": "^4.0.0",
"ejs": "^2.5.7",
"express": "^4.16.2",
"lodash": "^4.17.4",
"method-override": "^2.3.10",
"mongoose": "^4.13.4",
"morgan": "^1.9.0",
"redis": "^2.8.0",
"request": "^2.83.0"
}
}