-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
65 lines (65 loc) · 1.69 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
{
"name": "theintern.github.io",
"version": "1.0.0",
"private": true,
"dependencies": {
"@types/browser-sync": "~2.26.1",
"@types/highlight.js": "~9.12.3",
"@types/hyperscript": "0.0.3",
"@types/mark.js": "~8.11.5",
"@types/markdown-it": "0.0.9",
"@types/metalsmith": "~2.3.0",
"@types/node": "~12.12.17",
"@types/promise-polyfill": "~6.0.3",
"@types/rimraf": "~2.0.3",
"@types/strip-ansi": "~5.2.1",
"@types/webpack": "~4.41.0",
"@types/webpack-dev-middleware": "~2.0.3",
"autoprefixer": "~9.7.3",
"browser-sync": "~2.26.7",
"bs-fullscreen-message": "~1.1.0",
"bulma": "~0.8.0",
"highlight.js": "~9.17.1",
"hyperscript": "~2.0.2",
"inline-source": "~7.1.0",
"jstransformer-ejs": "~0.2.0",
"mark.js": "~8.11.1",
"markdown-it": "~10.0.0",
"metalsmith": "~2.3.0",
"metalsmith-assets": "~0.1.0",
"metalsmith-autoprefixer": "~1.1.2",
"metalsmith-browser-sync": "~1.1.1",
"metalsmith-in-place": "~4.4.1",
"metalsmith-layouts": "~2.3.1",
"metalsmith-sass": "~1.8.0",
"nodemon": "~2.0.2",
"promise-polyfill": "~8.1.3",
"rimraf": "~3.0.0",
"strip-ansi": "~6.0.0",
"ts-loader": "~6.2.1",
"ts-node": "~8.5.4",
"typedoc": "~0.15.4",
"typescript": "~3.7.3",
"uglify-js": "~3.7.2",
"webpack": "~4.41.2",
"webpack-dev-middleware": "~3.7.2",
"webpack-polyfill-injector": "~3.0.2",
"whatwg-fetch": "~3.0.0"
},
"scripts": {
"start": "nodemon scripts/build.ts serve",
"build": "ts-node scripts/build.ts",
"clean": "rimraf _public _publish",
"publish": "NODE_ENV=production ts-node scripts/build.ts publish"
},
"nodemonConfig": {
"execMap": {
"ts": "ts-node"
},
"watch": [
"build.ts",
"site/**"
],
"ext": "ts,ejs,html,json"
}
}