-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.55 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.55 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
{
"name": "@nodewell/website",
"version": "0.0.0-development",
"description": "The source of the official @nodewell website.",
"main": "index.js",
"private": true,
"scripts": {
"gulp": "gulp --gulpfile scripts/index.js",
"gulp:clear-build": "npm run gulp -- clear-build",
"gulp:copy-vendors": "npm run gulp -- copy-vendors",
"gulp:clear-and-copy": "npm run gulp -- clear-and-copy",
"start": "npm run gulp:clear-and-copy && webpack-dev-server",
"build": "npm run gulp:clear-build && webpack --mode production",
"test": "ls -lah1 ./build",
"deploy": "npm run gulp -- deploy",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "https://github.com/nodewell/website.git"
},
"keywords": [],
"author": "Richard King <richrdkng@gmail.com> (www.richrdkng.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/nodewell/website/issues"
},
"homepage": "https://github.com/nodewell/website#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@fortawesome/fontawesome-svg-core": "^1.2.17",
"@fortawesome/free-brands-svg-icons": "^5.8.1",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@nodewell/brand": "^1.1.4",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/exec": "^3.3.2",
"@semantic-release/git": "^7.0.8",
"@semantic-release/github": "^5.2.10",
"@semantic-release/release-notes-generator": "^7.1.4",
"@types/gulp": "^4.0.6",
"@types/jquery": "^3.3.29",
"@types/node": "^11.13.0",
"babel-loader": "^8.0.5",
"bootstrap": "^4.3.1",
"commitizen": "^3.0.7",
"css-loader": "^2.1.1",
"cz-conventional-changelog": "^2.1.0",
"del": "^4.1.0",
"delay": "^4.1.0",
"directory-exists": "^2.0.1",
"execa": "^1.0.0",
"fast-glob": "^2.2.6",
"file-loader": "^3.0.1",
"gulp": "^4.0.0",
"handlebars": "^4.1.1",
"handlebars-loader": "^1.7.1",
"html-webpack-plugin": "^3.2.0",
"is-travis": "^2.0.0",
"jquery": "^3.3.1",
"lodash": "^4.17.11",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"node-sass-utils": "^1.1.2",
"popper.js": "^1.15.0",
"sass-loader": "^7.1.0",
"semantic-release": "^15.13.3",
"semver": "^6.0.0",
"standard": "^12.0.1",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
}
}