-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.65 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.65 KB
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": "stackoverflow-lite",
"version": "1.0.0",
"description": "StackOverflow-lite is a platform where people can ask questions and provide answers.",
"main": "app.js",
"dependencies": {
"async": "^2.6.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"mocha": "^5.2.0",
"moment": "^2.22.2",
"pg": "^7.4.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.1",
"eslint-plugin-react": "^7.4.0",
"istanbul": "^0.4.5",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.18.3",
"nyc": "^12.0.2"
},
"engines": {
"node": "8.11.3"
},
"scripts": {
"test": "npm run build && nyc mocha ./build/test/app.test.js --exit",
"lint": "eslint ./api",
"build": "babel --presets es2015 ./api -d ./build/",
"start": "npm run build && node ./build/src/app.js",
"devStart": "npm run build && nodemon ./build/src/app.js",
"coveralls": "npm run test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/sudhons/Stackoverflow-lite.git"
},
"author": "Oluwaseun Jolaoso",
"license": "MIT",
"bugs": {
"url": "https://github.com/sudhons/Stackoverflow-lite/issues"
},
"homepage": "https://github.com/sudhons/Stackoverflow-lite#readme"
}