forked from DeNepo/javascript-30-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.51 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
{
"name": "word-list",
"version": "1.0.0",
"scripts": {
"tree": "depcruise --prefix ../ --include-only \"^src\" --exclude sandbox.js --output-type dot src | graphviz -Tsvg -odocs/dependency-graph.svg",
"document": "node ./dev-scripts/document.js && npm run tree",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:ci": "node --experimental-vm-modules node_modules/.bin/jest",
"lint:css": "stylelint",
"lint:css:ci": "stylelint 'public/**/*.css'",
"lint:js": "eslint --max-warnings=0 --ext=.js --format=codeframe",
"lint:js:ci": "npm run lint:js -- ./src",
"format": "prettier",
"dev": "lite-server"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/hackyourfuturebelgium/word-list.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/hackyourfuturebelgium/word-list/issues"
},
"homepage": "https://github.com/hackyourfuturebelgium/word-list",
"devDependencies": {
"dependency-cruiser": "^10.0.1",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^32.3.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^3.4.0",
"graphviz-cli": "^1.0.0",
"jest": "^26.6.3",
"jsdoc-to-markdown": "^6.0.1",
"lite-server": "^2.6.1",
"prettier": "^2.2.1",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0"
}
}