-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.47 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "speedupamerica-frontend",
"version": "0.0.1",
"description": "V2 Frontend for SpeedUpAmerica",
"main": "dist/main.js",
"scripts": {
"start": "node ./dist/src/main.js",
"start:dev": "npm run watch:html & npm run watch:tsc",
"lint": "eslint *.json src/*.ts src/**/*.ts test/*.spec.ts test/**/*.spec.ts",
"lint:fix": "eslint *.json src/*.ts src/**/*.ts test/*.spec.ts test/**/*.spec.ts --fix",
"build": "npm run build:tsc && npm run build:html",
"build:tsc": "tsc -p .",
"build:html": "cp -r src/views/ src/public/ src/sass dist/src",
"watch:tsc": "nodemon -e ts,js,json -L --ignore dist/ --ignore test/ --exec 'npm run build:tsc && npm start'",
"watch:html": "nodemon --watch src -e html,handlebars,scss,png,jpg,svg -L --exec 'npm run build:html'",
"check-types": "tsc",
"test": "mocha -r ts-node/register --require source-map-support/register --recursive test/*.spec.ts test/**/*.spec.ts",
"test:coverage": "nyc --reporter=lcov --reporter=text -- npm test",
"test:clean": "rm -rf .nyc_output/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hack4Eugene/speedupamerica-frontend.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hack4Eugene/speedupamerica-frontend/issues"
},
"homepage": "https://github.com/Hack4Eugene/speedupamerica-frontend#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/express": "^4.17.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.8",
"@types/sinon": "^7.0.13",
"@types/supertest": "^2.0.8",
"@typescript-eslint/parser": "^1.11.0",
"chai": "^4.2.0",
"eslint": "^6.0.1",
"eslint-config-google": "^0.13.0",
"eslint-plugin-json": "^1.4.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"sinon": "^7.3.2",
"source-map-support": "^0.5.12",
"supertest": "^4.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.2",
"winston-loggly-bulk": "^3.0.1"
},
"dependencies": {
"@hapi/joi": "^15.1.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"http-status-codes": "^1.3.2",
"lodash": "^4.17.15",
"mysql2": "^1.6.5",
"node-sass-middleware": "^0.11.0",
"winston": "^3.2.1"
},
"nyc": {
"all": true,
"extension": [
".ts"
],
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"node_modules/"
],
"reporter": [
"html"
],
"exludeNodeModules": true
}
}