-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.94 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
73
74
75
76
{
"name": "iot-air-pollution",
"version": "0.1.0",
"description": "terraform sentry organization",
"repository": "ssh://[email protected]/luismayta/iot-air-pollution.git",
"author": "Luis Mayta <[email protected]>",
"license": "LGPL-3.0",
"engines": {
"node": ">=v14.21.3"
},
"keywords": [],
"scripts": {
"build": "./node_modules/.bin/tsc -p",
"build:tool": "yarn run build ./tools/",
"clean": "rimraf -rf dist",
"clean:all": "yarn clean:cache && yarn clean:build:all && yarn clean node_modules",
"clean:build": "yarn clean dist .next out .serverless_nextjs",
"clean:build:all": "yarn clean && yarn clean:build && yarn clean:build:tool && yarn clean:build:test",
"clean:build:test": "yarn clean ./coverage",
"clean:build:tool": "yarn clean ./build/tools",
"clean:cache": "yarn clean ./node_modules/.cache",
"plop": "cross-env TS_NODE_PROJECT='./provision/generators/plop/ts-node.tsconfig.json' plop --plopfile provision/generators/plop/index.ts",
"lint": "eslint --config=.github/linters/.eslintrc.js --ignore-path=.github/linters/.eslintignore ./ --ext .js,.jsx,.mjs,.d.ts,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"lint:less": "stylelint --config=.github/linters/.stylintrc --syntax less **/*.less",
"lint:less:fix": "yarn lint:less --fix",
"prebuild": "yarn run clean",
"precommit": "lint-staged",
"prettier": "prettier --config=.github/linters/prettier.config.js --ignore-path=.github/linters/.prettierignore",
"prettier:fix": "yarn prettier:lint --write=true",
"prettier:lint": "yarn prettier '**/*.{js?(on),ts?(x),scss,md,y?(a)ml,gql,graphql?(s),less,mjml}' --write=false --list-different"
},
"dependencies": {},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@commitlint/cli": "^19.5.0",
"@hadenlabs/commitlint-config": "^0.1.0",
"@types/jest": "^29.5.14",
"@types/mocha": "^10.0.9",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"axios": "^1.7.7",
"babel-cli": "^6.26.0",
"cross-env": "^7.0.3",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"husky": "^6.0.0",
"lint-staged": "^15.2.10",
"node-plop": "^0.32.0",
"plop": "^4.0.1",
"prettier": "^3.3.3",
"prettier-tslint": "^0.4.2",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.0",
"shelljs": "^0.8.5",
"slugify": "^1.6.6",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"publishConfig": {
"access": "public"
},
"prettier": "./.github/linters/prettier.config.js",
"husky": {
"hooks": {
"pre-commit": "yarn precommit",
"commit-msg": "commitlint --config=.github/linters/.commitlintrc.json -E HUSKY_GIT_PARAMS"
}
},
"stylintrc": ".github/linters/.stylintrc"
}