forked from nine2five/nine2five-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.4 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.4 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
{
"name": "nine2five",
"version": "1.0.0",
"description": "Resume version management and career success application",
"main": "index.js",
"scripts": {
"start": "node server.js",
"test": "istanbul cover --dir ./coverage _mocha --bail --recursive './test/**/*-test.js' --opts",
"lint": "./node_modules/eslint/bin/eslint.js .",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"babel": "babel -w app/ -d build/",
"heroku-postbuild": "babel app/ -d build/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nine2five/nine2five"
},
"author": "broxsonl@gmail.com, stefuhnee@gmail.com, maxfred0025@gmail.com, Raziyeh.bazargan@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/broxsonl/nine2five/issues"
},
"homepage": "https://github.com/nine2five/nine2five#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"debug": "^2.6.0",
"eslint": "^3.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0"
},
"dependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"cors": "^2.8.1",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"morgan": "^1.7.0",
"sequelize": "^3.29.0",
"superagent": "^3.3.2"
}
}