-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.3 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
{
"name": "box-shadow",
"version": "0.2.0",
"description": "Visual tool for css property box-shadow",
"main": "index.js",
"scripts": {
"dev": "webpack serve --config webpack.dev.js",
"transpile": "babel ./src --out-dir ./js --source-maps --ignore test.js",
"transpile:all": "babel ./src --out-dir ./js --source-maps",
"lint:build": "eslint -c .eslintrc-build.js ./src --ext .ts,.tsx,.js,.jsx > lint-build.txt",
"lint:hooks": "eslint -c .eslintrc-hooks.js ./src --ext .ts,.tsx,.js,.jsx > lint-hooks.txt",
"build:dll": "webpack --color --progress --config webpack.dll.js",
"build:dll-tsx": "webpack --color --progress --config webpack.dll-tsx.js",
"css:min": "node css-min.js",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"css-box-shadow",
"css-tool"
],
"author": "Yevhenii Molodyi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ZhnZhn/css-tool.git"
},
"dependencies": {
"@babel/runtime": "^7.26.0",
"preact": "^10.25.4"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/eslint-plugin": "^7.25.9",
"@babel/plugin-transform-react-jsx": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/tinycolor2": "^1.4.6",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"babel-loader": "^9.2.1",
"eslint": "^8.57.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"terser-webpack-plugin": "^5.3.11",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
"^.+\\.(ts|tsx|js)$": "ts-jest"
}
}
}