-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.72 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
{
"name": "catalogopolis-api",
"private": true,
"version": "1.0.1",
"description": "API with information on Doctor Who episodes and related data.",
"author": "Dana Ross <dana@danaross.dev>",
"main": "app/dist/bundle.js",
"scripts": {
"start": "node app/dist/bundle.js",
"build": "node_modules/.bin/webpack",
"apidoc": "node_modules/.bin/apidoc -i app -o docs/restapi",
"apidoc-w": "node_modules\\.bin\\apidoc -i app -o docs\\restapi",
"graphqldoc": "node_modules/.bin/graphdoc --force -e http://localhost:5000/graphql -o docs/graphql",
"pretest": "node_modules/.bin/webpack --config=webpack-test.config.js",
"test": "node_modules/.bin/mocha 'dist/test/*.js'",
"lint": "eslint --ext .js,.ts app/src --fix"
},
"devDependencies": {
"@2fd/graphdoc": "github:dana-ross/graphdoc",
"@types/chai": "^3.4.35",
"@types/mocha": "^2.2.46",
"@types/node": "^7.0.52",
"@types/sqlite3": "^2.2.32",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"apidoc": "^0.17.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.5.0",
"eslint": "^6.2.2",
"marked": "^0.7.0",
"mocha": "^5.2.0",
"ts-loader": "^4.0.0",
"typescript": "^2.6.2",
"webpack": "^4.0.0",
"webpack-cli": "^3.3.7",
"webpack-node-externals": "^1.5.4"
},
"dependencies": {
"dotenv": "^4.0.0",
"express-graphql": "^0.6.11",
"graphql": "^0.11.7",
"memoized-class-decorator": "^1.5.0",
"polka": "^0.3.4",
"sqlite3": "^4.0.6",
"universal-analytics": "^0.4.16"
},
"apidoc": {
"title": "Catalogopolis REST API v1",
"url": "https://api.catalogopolis.xyz/v1"
}
}