-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
59 lines (59 loc) · 1.89 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
{
"name": "tinter",
"version": "1.0.0",
"description": "Generate tints of images",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "NODE_OPTIONS=--openssl-legacy-provider && npm run watch:css && webpack serve --config webpack.dev.js --open --hot ",
"build": "set NODE_ENV=production&& npm run build:css && webpack --mode=production --devtool source-map --config webpack.prod.js",
"build:css": "postcss src/styles/tailwind.css -o src/styles/main.css",
"watch:css": "postcss src/styles/tailwind.css -o src/styles/main.css"
},
"keywords": [
"tinter",
"image",
"hue",
"color"
],
"author": "Anup Aglawe",
"license": "ISC",
"dependencies": {
"@headlessui/react": "^1.2.0",
"@tailwindcss/forms": "^0.3.2",
"file-saver": "^2.0.5",
"preact": "^10.5.4",
"zustand": "^3.5.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.1.0",
"compression-webpack-plugin": "^6.0.3",
"css-loader": "^4.3.0",
"eslint": "^7.29.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-preact": "^1.1.4",
"eslint-plugin-import": "^2.23.4",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^0.11.3",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss": "^8.2.15",
"postcss-cli": "^8.0.0",
"postcss-loader": "^4.0.3",
"style-loader": "^1.3.0",
"tailwindcss": "^2.1.2",
"webpack": "^5.89.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"eslintConfig": {
"extends": "preact"
}
}