-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.6 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": "@librarymarket/zodiac",
"version": "1.0.0-alpha5",
"description": "A carousel written in TypeScript.",
"type": "module",
"scripts": {
"build": "npm run build:css && npm run build:js",
"build:css": "sass --style expanded --no-error-css src/assets/scss/zodiac.scss dist/css/zodiac.css",
"build:js": "rollup -cm",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "stylelint \"./src/assets/scss/*.scss\" --cache --cache-location .cache/.stylelintcache --rd",
"lint:js": "tsc --noEmit && eslint src --ext .ts",
"test": "jest",
"watch:css": "nodemon --watch src/asset/ --ext scss --exec \"npm run build:css\"",
"watch:js": "nodemon --watch src/ --ext ts --exec \"npm run build:js\"",
"watch": "npm run watch:css && npm run watch:js"
},
"author": "jeremyljackson",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nodemon": "^3.1.4",
"rollup": "^3.29.4",
"sass": "^1.77.6",
"stylelint": "^15.11.0",
"stylelint-config-twbs-bootstrap": "^11.0.1",
"ts-jest": "^29.1.5",
"typescript": "^5.4.5"
}
}