-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
100 lines (100 loc) · 2.78 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": "selfhosted-awesome-unlist",
"version": "1.3.0",
"description": "My webpack project",
"main": "index.js",
"author": "Levi Wheatcroft <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"buildPublish": "NODE_ENV=production yarn run scrape:awesome && NODE_ENV=production yarn run scrape:github && yarn run buildProduction && yarn run publish",
"buildAssets": "webpack --config webpack.config.js",
"buildContent": "DEBUG=metalsmith* node buildContent.js",
"buildProduction": "rimraf build/* && NODE_ENV=production yarn run buildContent && NODE_ENV=production yarn run buildAssets",
"publish": "gh-pages -d build",
"scrape:awesome": "DEBUG=sau node lib/scrapeAwesomeSelfhosted.js",
"scrape:github": "DEBUG=sau node lib/populateProjects.js",
"dev": "concurrently \"npm-watch\" \"node browsersync\""
},
"watch": {
"buildAssets": {
"patterns": [
"assets/**/*"
],
"extensions": "js,css,less"
},
"buildContent": {
"patterns": [
"layouts/**/*",
"projects/**/*",
"buildContent.js",
"lib/**/*"
],
"extensions": "pug,md,js"
}
},
"dependencies": {
"@octokit/rest": "^17.5.2",
"bootstrap": "3.4.1",
"browser-sync": "^2.26.7",
"cheerio": "^1.0.0-rc.3",
"classnames": "^2.2.6",
"concurrently": "^5.1.0",
"config": "^3.3.1",
"css-loader": "^3.5.2",
"debug": "^4.1.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"feather-icons": "^4.28.0",
"gh-pages": "^2.2.0",
"got": "^11.0.2",
"gray-matter": "^4.0.2",
"jquery": "^3.5.0",
"jstransformer-less": "^2.3.0",
"jstransformer-markdown-it": "^2.1.0",
"jstransformer-pug": "^0.3.0",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"lodash": "^4.17.15",
"markdown-it": "^10.0.0",
"marked": "^1.0.0",
"metalsmith": "^2.3.0",
"metalsmith-layouts": "^2.3.1",
"metalsmith-markdown": "^1.3.0",
"metalsmith-tags": "^2.0.0",
"milligram": "^1.3.0",
"mini-css-extract-plugin": "^0.9.0",
"moment": "^2.24.0",
"multimatch": "^4.0.0",
"nedb": "^1.8.0",
"npm-watch": "^0.6.0",
"popper.js": "^1.16.1",
"pug": "^2.0.4",
"pug-loader": "^2.4.0",
"puppeteer": "^3.0.1",
"rimraf": "^3.0.2",
"rst2html": "^1.0.4",
"style-loader": "^1.1.4",
"tiny-async-pool": "^1.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "standard",
"installedESLint": true,
"plugins": [
"standard",
"babel"
],
"env": {
"node": true,
"jquery": true
}
},
"browserslist": "> 0.25%, not dead",
"nodemonConfig": {
"verbose": false
}
}