-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.4 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
{
"name": "@lmarqs/less-than-100mb-docker-node",
"author": "lmarqs",
"version": "0.0.0",
"description": "An example of production ready docker image for NodeJS projects",
"license": "MIT",
"homepage": "https://github.com/lmarqs/less-than-100mb-docker-node#readme",
"private": true,
"bugs": {
"url": "https://github.com/lmarqs/less-than-100mb-docker-node/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:lmarqs/less-than-100mb-docker-node.git"
},
"scripts": {
"build": "parcel build src/index.html",
"lint:css": "stylelint '**/*.{css,scss,sass}' '!node_modules'",
"lint:commit": "commitlint --from master",
"lint:docker-compose": "docker-compose config",
"lint:eslint": "eslint --ext ts --ext js .",
"lint:markdown": "markdownlint '**/*.md' --ignore node_modules --ignore CHANGELOG.md",
"lint:yamllint": "yamllint '**/*.{yaml,yml}' --ignore='node_modules/**/*'",
"lint": "npm-run-all lint:*",
"prebuild": "shx rm -rf dist",
"release": "npx semantic-release",
"start": "parcel src/index.html"
},
"bundledDependencies": [
"react",
"react-dom",
"bootstrap"
],
"dependencies": {
"bootstrap": "^4.5.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"husky": "^4.2.5",
"markdownlint-cli": "^0.23.2",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"sass": "^1.26.10",
"semantic-release": "^17.1.1",
"semantic-release-docker": "^2.2.0",
"shx": "^0.3.2",
"stylelint": "^13.6.1",
"stylelint-config-standard": "^20.0.0",
"typescript": "^3.9.7",
"yaml-lint": "^1.2.4"
}
}