-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) 路 2.2 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) 路 2.2 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "stackmatch",
"version": "1.0.0",
"description": "A Founders & Coders job opportunities platform.",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "NODE_ENV=test nyc tape src/test/*.test.js | tap-spec",
"test:app": "NODE_ENV=test nodemon src/test/app.test.js | tap-spec",
"test:db": "NODE_ENV=test nodemon src/test/db.test.js | tap-spec",
"test:unit": "NODE_ENV=test nodemon src/test/unit.test.js | tap-spec",
"test:api": "NODE_ENV=test nodemon src/test/api.test.js | tap-spec",
"test:coverage": "NODE_ENV=test nyc --reporter=lcov --reporter=text-lcov tape src/test/*.test.js | tap-spec && open -a \"Google Chrome\" ./coverage/lcov-report/index.html",
"build": "node src/model/database/db_build.js",
"lint": "./node_modules/.bin/eslint **/*.js --ignore-pattern node_modules/",
"build:wp": "webpack",
"dev:wp": "webpack --watch"
},
"pre-commit": [
"build:wp",
"test",
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fac-13/stackMatch.git"
},
"author": "tdoran, LawEKS, vlbee, helenzhou6",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-13/stackMatch/issues"
},
"homepage": "https://github.com/fac-13/stackMatch#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.0",
"nodemon": "^1.17.4",
"nyc": "^11.7.1",
"pre-commit": "^1.2.2",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"supertest": "^3.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.9.0",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.2",
"cookie-session": "^2.0.0-beta.3",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"helmet": "^3.12.0",
"nock": "^9.2.6",
"passport": "^0.4.0",
"passport-github2": "^0.1.11",
"pg-promise": "^8.4.3"
}
}