-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
100 lines (100 loc) · 3.81 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "my-simple-site",
"version": "1.0.0",
"description": "mysite.com",
"author": "",
"license": "MIT",
"main": "server/index.js",
"private": true,
"engines": {
"node": ">=6.11.1",
"npm": ">=5.3.0"
},
"dependencies": {
"@types/autoprefixer": "^9.4.0",
"@types/body-parser": "^1.17.0",
"@types/bootstrap": "^4.3.0",
"@types/compression": "^0.0.36",
"@types/console-stamp": "^0.2.32",
"@types/express": "^4.16.1",
"@types/express-handlebars": "^0.0.30",
"@types/fs-extra": "^5.0.5",
"@types/glob": "^7.1.1",
"@types/handlebars": "^4.1.0",
"@types/html-minifier": "^3.5.3",
"@types/htmlparser2": "^3.10.0",
"@types/lodash": "^4.14.123",
"@types/memory-cache": "^0.2.0",
"@types/moment-timezone": "^0.5.12",
"@types/morgan": "^1.7.35",
"@types/node": "^11.12.1",
"@types/node-sass": "^4.11.0",
"@types/remarkable": "^1.7.3",
"@types/request": "^2.48.1",
"@types/uglify-js": "^3.0.4",
"@types/vary": "^1.1.0",
"autoprefixer": "^9.5.0",
"body-parser": "^1.18.3",
"bootstrap": "^4.3.1",
"browser-sync": "^2.26.3",
"clean-css": "^4.2.1",
"compression": "^1.7.4",
"console-stamp": "^0.2.7",
"exit": "^0.1.2",
"express": "^4.16.4",
"express-handlebars": "^3.0.2",
"front-matter": "^3.0.1",
"fs-extra": "^7.0.1",
"glob": "^7.1.3",
"handlebars-helpers": "^0.10.0",
"html-minifier": "^3.5.21",
"htmlparser2": "^3.10.1",
"jquery": "^3.3.1",
"jquery-validation": "^1.19.0",
"lodash": "^4.17.13",
"memory-cache": "^0.2.0",
"mkdirp": "^0.5.1",
"moment": "^2.24.0",
"moment-timezone": "^0.5.23",
"morgan": "^1.9.1",
"node-sass": "^4.11.0",
"popper.js": "^1.14.7",
"postcss": "^7.0.14",
"promise": "^8.0.3",
"purify-css": "^1.2.5",
"remarkable": "^1.7.1",
"request": "^2.88.0",
"stable": "^0.1.8",
"tether": "^1.4.5",
"typescript": "^3.3.4000",
"uglify-js": "^3.5.2",
"vary": "^1.1.2"
},
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.18.10",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"tslint": "^5.14.0",
"tslint-microsoft-contrib": "^6.1.0"
},
"scripts": {
"build": "npm run build:server && npm run build:client && npm run build:lib && npm run build:css",
"build:css": "node build/scss.js",
"build:lib": "node build/lib.js",
"build:client": "tsc -p tsconfig.client.json && node build/minify.js",
"build:server": "tsc",
"clean": "rimraf public/css && rimraf public/js && rimraf server/**/*.js && rimraf server/**/*.map",
"dev": "concurrently -r -k \"npm run watch\" \"npm run dev:server\"",
"dev:server": "nodemon -w server -e js,json --delay 2",
"dev:sync": "browser-sync start --proxy \"http://localhost:3000\" --reload-delay 2000 --logLevel \"silent\" --no-open --no-notify --no-ui --files \"public/**\" --files \"server/**/*.js\" --files \"server/**/*.md\" --files \"server/**/*.js\" --files \"views/**\"",
"format": "prettier --loglevel warn --config prettier.config.js --write \"{ts,server}/**/*.ts\"",
"lint": "tslint --fix --force -p tsconfig.json -c tslint.json",
"postinstall": "npm run build",
"start": "node server",
"watch": "concurrently -r -k \"npm run watch:css\" \"npm run watch:server\" \"npm run watch:client\"",
"watch:css": "nodemon -q -w scss -e scss --exec npm run build:css",
"watch:client": "tsc -p tsconfig.client.json -w",
"watch:server": "tsc -w"
}
}