forked from topcoder-platform/tc-project-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.27 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "tc-projects-service",
"version": "1.4.2",
"description": "Projects microservice",
"main": "index.js",
"engines": {
"node": ">=6.9"
},
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "./node_modules/.bin/eslint . --fix || true",
"build": "babel src -d dist --presets es2015 --copy-files",
"sync:db": "./node_modules/.bin/babel-node migrations/sync.js",
"sync:es": "./node_modules/.bin/babel-node migrations/elasticsearch_sync.js",
"migrate:es": "./node_modules/.bin/babel-node migrations/seedElasticsearchIndex.js",
"prestart": "npm run -s build",
"start": "node dist",
"startKafkaConsumers": "npm run -s build && node dist/index-kafka.js",
"start:dev": "NODE_ENV=development PORT=8001 nodemon -w src --exec \"babel-node src --presets es2015\" | ./node_modules/.bin/bunyan",
"test": "NODE_ENV=test npm run lint && NODE_ENV=test npm run sync:es && NODE_ENV=test npm run sync:db && NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- --timeout 10000 --compilers js:babel-core/register $(find src -path '*spec.js*')",
"test:watch": "NODE_ENV=test ./node_modules/.bin/mocha -w --compilers js:babel-core/register $(find src -path '*spec.js*')",
"seed": "babel-node src/tests/seed.js --presets es2015",
"demo-data": "babel-node local/seed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/appirio-tech/tc-projects-service.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/appirio-tech/tc-projects-service/issues"
},
"homepage": "https://github.com/appirio-tech/tc-projects-service#readme",
"dependencies": {
"amqplib": "^0.5.1",
"analytics-node": "^2.1.1",
"app-module-path": "^1.0.7",
"aws-sdk": "^2.33.0",
"axios": "^0.17.1",
"bluebird": "^3.4.1",
"body-parser": "^1.15.0",
"co": "^4.6.0",
"compression": "^1.7.3",
"config": "^1.20.1",
"continuation-local-storage": "^3.1.7",
"cors": "^2.8.4",
"elasticsearch": "^11.0.1",
"express": "^4.13.4",
"express-list-routes": "^0.1.4",
"express-request-id": "^1.1.0",
"express-sanitizer": "^1.0.2",
"express-validation": "^0.6.0",
"http-aws-es": "^4.0.0",
"joi": "^8.0.5",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.16.4",
"memwatch-next": "^0.3.0",
"method-override": "^2.3.9",
"moment": "^2.22.2",
"no-kafka": "^3.2.10",
"pg": "^4.5.5",
"pg-native": "^1.10.1",
"sequelize": "^3.23.0",
"tc-core-library-js": "appirio-tech/tc-core-library-js.git#v2.6",
"traverse": "^0.6.6",
"urlencode": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.11.4",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.9.0",
"bunyan": "^1.8.12",
"chai": "^3.5.0",
"chai-as-promised": "^7.1.1",
"eslint": "^3.16.1",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^2.5.3",
"nodemon": "^1.9.1",
"really-need": "^1.9.2",
"sequelize-cli": "^2.4.0",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"sleep": "^5.1.0",
"supertest": "^2.0.0"
}
}