-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.25 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
{
"name": "@gocom/textpattern-project-template",
"version": "0.1.0",
"description": "Textpattern CMS project",
"repository": {
"url": "https://github.com/gocom/textpattern-project-template.git"
},
"author": {
"name": "Jukka Svahn",
"url": "https://github.com/gocom"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/runtime-corejs3": "^7.21.0",
"@types/jest": "^29.4.0",
"babel-loader": "^9.1.2",
"babel-jest": "^29.4.3",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.29.0",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"ejs": "^3.1.8",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.27.5",
"file-loader": "^6.2.0",
"focus-visible": "^5.2.0",
"html-validate": "^7.13.2",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.4.3",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"lintspaces-cli": "^0.8.0",
"mini-css-extract-plugin": "^2.7.2",
"postcss-less": "^6.0.0",
"stylelint": "^15.2.0",
"stylelint-config-standard": "^30.0.1",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"scripts": {
"lint": "npm run lint:html && npm run lint:js && npm run lint:json && npm run lint:css",
"lint:html": "html-validate 'src/**/*.html'",
"lint:js": "eslint --ext .js ./src/assets/",
"lint:css": "stylelint 'src/**/*.{css,less}'",
"lint:json": "lintspaces -e .editorconfig 'src/**/*.json' '.*.json' '*.json'",
"lint:fix": "eslint --fix --ext .js ./src/assets/",
"test": "npm run lint && npm run test:unit",
"test:unit": "jest --passWithNoTests",
"build": "webpack",
"build:dev": "webpack",
"watch": "npm run build:dev -- --watch"
},
"private": true
}