-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.21 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.21 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
{
"name": "html-css-js-template",
"version": "1.0.0",
"description": "a template for web-development",
"main": "n.a.",
"type": "module",
"keywords": [
"html",
"css",
"js",
"template"
],
"author": "Gregor Adams",
"license": "MIT",
"scripts": {
"dev": "node tools/browser-sync.js",
"prettier": "npx prettier --check .",
"stylelint": "npx stylelint *.css",
"lint": "npm run prettier",
"cypress": "npx cypress open"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@cypress/browserify-preprocessor": "^3.0.2",
"@types/browser-sync": "^2.26.3",
"@types/node": "^17.0.0",
"browser-sync": "^2.27.7",
"cucumber": "^7.0.0-rc.0",
"cypress": "^9.1.1",
"cypress-cucumber-preprocessor": "^4.3.1",
"prettier": "^2.5.1",
"stylelint": "^13.13.1",
"stylelint-a11y": "^1.2.3",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-property-sort-order-smacss": "^7.1.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"typescript": "^4.5.4"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
}
}