-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 978 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 978 Bytes
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
{
"name": "anagramapp",
"version": "1.0.0",
"description": "",
"main": "build/start.js",
"dependencies": {
"@overnightjs/core": "^1.6.9",
"@overnightjs/logger": "^1.1.9",
"body-parser": "^1.19.0",
"express": "^4.17.1"
},
"devDependencies": {
"@types/express": "^4.17.1",
"@types/node": "^12.7.2",
"eslint": "^6.2.2",
"nodemon": "^1.19.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"scripts": {
"test": "ruby tests/anagram_test.rb",
"start": "nodemon --config \"nodemon.json\"/",
"build": "tsc",
"start-prod": "node build/start.js",
"parse-dictionary": "node scripts/parseDictionary.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tim-Kerr/AnagramAPI.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tim-Kerr/AnagramAPI/issues"
},
"homepage": "https://github.com/Tim-Kerr/AnagramAPI#readme",
"bin": "build/start.js"
}