-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.04 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
{
"name": "tbc-finder",
"version": "0.0.1",
"description": "POC - creates a search index and exposes a service for using it",
"private": true,
"scripts": {
"start": "node index.js",
"dev": "NODE_ENV=development nodemon --inspect index.js",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mapolonio/tbc.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapolonio/tbc/issues"
},
"homepage": "https://github.com/mapolonio/tbc#readme",
"dependencies": {
"express": "^4.17.0",
"lodash": "^4.17.11",
"vue": "^2.6.10",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-eslint": "^5.0.1",
"eslint-plugin-vue": "^5.2.2",
"nodemon": "^1.19.1",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.32.0",
"webpack-cli": "^3.3.2"
},
"nodemonConfig": {
"ignore": [
"public/js/*",
"src/index.js"
]
}
}