-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.59 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "tote-site",
"version": "0.1.0",
"description": "A backend API and UI frontend for managing shows, players, etc. for Theatre On The Edge.",
"main": "server/index.js",
"scripts": {
"install": "tsd install",
"test": "mocha ./tests/**/*.testSpec.js",
"start": "node server/index.js",
"lint": "tslint ./{server,tests}/*{,*/}{,*/}{,*/}{,*/}/*.ts",
"validate": "npm ls",
"build": "tsc",
"watch": "nodemon server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JasonTarka/tote-site.git"
},
"keywords": [
"tote",
"management",
"show",
"improv",
"api"
],
"author": "Jason Tarka <jason@tarka.ca>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JasonTarka/tote-site/issues"
},
"homepage": "https://github.com/JasonTarka/tote-site#readme",
"devDependencies": {
"babel-eslint": "^5.0.0-beta6",
"eslint": "^1.10.3",
"eslint-plugin-mocha": "^1.1.0",
"mocha": "^2.3.4",
"mockery": "^1.4.0",
"node-gyp": "^3.2.1",
"nodemon": "^1.9.1",
"precommit-hook-eslint": "^3.0.0",
"should": "^8.0.2",
"should-sinon": "0.0.3",
"sinon": "^1.17.2",
"tsd": "^0.6.5",
"tslint": "^3.3.0",
"typescript": "^1.7.5",
"typescript-eslint-parser": "0.1.0-alpha-1"
},
"dependencies": {
"body-parser": "^1.14.2",
"express": "^4.13.3",
"jsonwebtoken": "^5.5.0",
"morgan": "^1.6.1",
"mysql": "^2.10.0",
"passport": "^0.3.2",
"passport-jwt": "^1.2.1",
"scrypt": "^6.0.2"
},
"pre-commit": [
"lint",
"validate",
"test"
]
}