-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.52 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
{
"name": "api-documentation",
"version": "0.0.1",
"private": true,
"description": "GDL API Documentation",
"main": "index.js",
"scripts": {
"test": "jest",
"tdd": "npm test -- --watch",
"start": "cross-env API_DOCUMENTATION_PORT=3001 GDL_API_URL=http://localhost:8001 nodemon --watch src/ src/server.js | bunyan",
"lint": "eslint src",
"start-prod": "cross-env NODE_ENV=production node src/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/GlobalDigitalLibraryio/api-documentation.git"
},
"devDependencies": {
"babel-jest": "16.0.0",
"cross-env": "3.0.0",
"eslint-config-ndla": "0.0.3",
"jest": "16.0.1",
"nodemon": "1.10.2"
},
"dependencies": {
"babel-plugin-transform-async-to-generator": "6.16.0",
"babel-plugin-transform-object-rest-spread": "6.16.0",
"babel-polyfill": "6.16.0",
"babel-preset-es2015": "6.16.0",
"babel-preset-react": "6.16.0",
"babel-register": "6.16.0",
"bunyan": "1.8.1",
"classnames": "2.2.5",
"compression": "1.6.2",
"cors": "2.8.1",
"defined": "1.0.0",
"express": "4.14.0",
"http-status": "0.2.3",
"isomorphic-fetch": "2.2.1",
"lodash": "4.16.2",
"swagger-ui": "2.2.10"
},
"jest": {
"testRegex": "/__tests__/.*-test.(js|jsx)$"
},
"bugs": {
"url": "https://github.com/GlobalDigitalLibraryio/api-documentation/issues"
},
"homepage": "https://github.com/GlobalDigitalLibraryio/api-documentation",
"author": "[email protected]",
"license": "Apache-2.0"
}