-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.31 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
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
77
78
79
80
81
{
"name": "gen-dither",
"version": "1.0.0",
"description": "Method for generating dither paterns sed by the GameBoy Camera",
"main": "index.js",
"scripts": {
"run": "node src/index.mjs",
"dev": "webpack serve --config ./scripts/webpack.dev.js",
"host": "npm run build && node ./scripts/host.js",
"build": "npm run build:clean && npm run build:webpack",
"build:clean": "rimraf dist && rimraf build",
"build:webpack": "webpack --config ./scripts/webpack.prod.js",
"test": "jest --config=./jest.config.js"
},
"keywords": [
"bayer",
"dither",
"gameboy",
"camera",
"2bit"
],
"author": "Herr Zatacke",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"autoprefixer": "^10.2.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"chalk": "^3.0.0",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.13.1",
"css-loader": "^5.2.6",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-webpack-plugin": "^3.1.0",
"express": "^4.17.1",
"flatten": "^1.0.3",
"html-webpack-plugin": "^5.3.1",
"is-color": "^1.0.2",
"is-css-length": "^0.2.0",
"jest": "^29.3.1",
"mini-css-extract-plugin": "^1.6.0",
"node-polyfill-webpack-plugin": "^1.1.2",
"node-watch": "^0.7.1",
"param-case": "^3.0.4",
"postcss": "^8.3.0",
"postcss-loader": "^5.3.0",
"postcss-preset-env": "^6.7.0",
"postcss-pxtorem": "^6.0.0",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-bezier-curve-editor": "^1.1.2",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"redux": "^4.2.0",
"reset-css": "^5.0.1",
"rimraf": "^3.0.2",
"sass": "^1.50.0",
"sass-loader": "^12.0.0",
"sass-resources-loader": "^2.2.1",
"style-loader": "^2.0.0",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.8.1",
"webpack-merge": "^5.8.0"
},
"browserslist": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
}