This repository was archived by the owner on Feb 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (112 loc) · 3.41 KB
/
package.json
File metadata and controls
121 lines (112 loc) · 3.41 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "amalgam",
"version": "1.0.0",
"description": "An interface for working with radio station services and features",
"repository": {
"type": "git",
"url": "https://github.com/wsbf/amalgam.git"
},
"author": "Angelo Carrabba",
"license": "MIT",
"scripts": {
"serve": "nodemon server/dist/server.js",
"start": "npm run build && npm run watch",
"database": "mongod --dbpath $PWD/database/TestData/db/",
"build": "npm run build-css && npm run build-web && npm run build-server",
"watch": "concurrently -k -p \"[{name}]\" -n \"CSS,WEB,SERVER,NODE\" -c \"yellow.bold,cyan.bold,red.bold,green.bold\" \"npm run watch-css\" \"npm run watch-web\" \"npm run watch-server\" \"npm run serve\"",
"build-server": "cd server; tsc",
"watch-server": "cd server; tsc --watch",
"build-css": "node-sass style/main.scss public/main.css",
"watch-css": "node-sass style/main.scss public/main.css --watch",
"build-web": "cd view; webpack",
"watch-web": "cd view; webpack --watch",
"tslint-server": "tslint -c tslint.json -p server/tsconfig.json",
"tslint-web": "tslint -c tslint.json -p view/tsconfig.json",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run w-sass\" \"npm run w-ts\" \"npm run serve-debug\""
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "config/tsconfig.server.json"
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/test/**/*.test.(ts|js)"
],
"testEnvironment": "node"
},
"dependencies": {
"async": "^2.5.0",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.18.2",
"compression": "^1.7.1",
"connect-mongo": "^1.3.2",
"dotenv": "^2.0.0",
"errorhandler": "^1.5.0",
"express": "^4.16.2",
"express-flash": "0.0.2",
"express-session": "^1.15.6",
"express-validator": "^4.2.1",
"fbgraph": "^1.4.1",
"lodash": "^4.17.4",
"lusca": "^1.5.2",
"mongoose": "^4.12.4",
"morgan": "^1.9.0",
"nodemailer": "^2.7.2",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"pug": "^2.0.0-rc.4",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"request": "^2.83.0",
"ts-loader": "^3.2.0",
"webpack": "^3.10.0"
},
"devDependencies": {
"@types/async": "^2.0.40",
"@types/bcrypt-nodejs": "0.0.30",
"@types/body-parser": "^1.16.2",
"@types/compression": "0.0.33",
"@types/connect-mongo": "0.0.34",
"@types/dotenv": "^2.0.20",
"@types/errorhandler": "0.0.32",
"@types/express": "^4.0.35",
"@types/express-session": "^1.15.5",
"@types/jest": "^21.1.5",
"@types/jquery": "^3.2.15",
"@types/lodash": "^4.14.80",
"@types/mongodb": "^2.2.15",
"@types/mongoose": "^4.7.9",
"@types/morgan": "^1.7.32",
"@types/node": "^7.0.12",
"@types/nodemailer": "^1.3.32",
"@types/passport": "^0.3.3",
"@types/passport-facebook": "^2.1.3",
"@types/react": "^16.0.31",
"@types/react-dom": "^16.0.3",
"@types/react-router-dom": "^4.2.3",
"@types/request": "^2.0.7",
"@types/supertest": "^2.0.0",
"concurrently": "^3.4.0",
"jest": "^21.2.1",
"node-sass": "^4.5.2",
"nodemon": "^1.11.0",
"shelljs": "^0.7.7",
"supertest": "^2.0.1",
"ts-jest": "^21.1.4",
"tslint": "^5.8.0",
"typescript": "^2.4.0"
}
}