-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.15 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.15 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
{
"name": "cycled-server",
"version": "0.0.1",
"description": "Backend server for Cycled translation app",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "NODE_ENV=test MONGODB_URI=mongodb://localhost/cycled-test mocha --compilers js:babel-register $(find ./ -name '*.spec.js')"
},
"repository": {
"type": "git",
"url": "git+https://github.com/esceenze/cycled-server.git"
},
"author": "Slava Kovalenko",
"license": "ISC",
"bugs": {
"url": "https://github.com/esceenze/cycled-server/issues"
},
"homepage": "https://github.com/esceenze/cycled-server#readme",
"dependencies": {
"express": "^4.14.0",
"mongoose": "^4.4.10",
"morgan": "^1.7.0",
"jsonwebtoken": "^5.7.0",
"cookies-js": "^1.2.2",
"body-parser": "^1.15.0",
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0"
},
"devDependencies": {
"ajv-pack": "^0.2.7",
"babel-eslint": "^6.0.2",
"chai": "^3.5.0",
"eslint": "^2.6.0",
"eslint-cli": "^1.1.0",
"expect": "^1.16.0",
"mocha": "^2.4.5",
"supertest": "^1.2.0"
}
}