-
Notifications
You must be signed in to change notification settings - Fork 306
/
package.json
126 lines (126 loc) · 3.79 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "pixel-art-react",
"version": "3.10.0",
"description": "Draw and animate Pixel Art, then export the results to CSS or download them, powered by React",
"author": "Javier Valencia Romero",
"scripts": {
"lint": "eslint **/*.{js,jsx}",
"csslint": "stylelint src/**/*.{css,js,jsx}",
"prettier": "prettier **/*.{js,jsx,json,yml,yaml,css,md}",
"format": "npm run prettier -- --write --list-different",
"test": "jest",
"test:watch": "npm run test -- --watch",
"validate": "npm run lint && npm run csslint && npm run prettier -- --list-different && npm run test",
"development": "webpack-dev-server --hot",
"deploy": "NODE_ENV=production webpack --mode production --config webpack.production.config.js",
"postinstall": "NODE_ENV=production webpack --mode production --config webpack.production.config.js"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/jvalen/pixel-art-react"
},
"keywords": [
"pixel",
"art",
"drawing",
"react",
"redux",
"express"
],
"license": "MIT",
"jest": {
"setupFiles": [
"jest-canvas-mock"
]
},
"dependencies": {
"assert": "^2.1.0",
"autoprefixer": "^9.7.2",
"blob-stream": "^0.1.3",
"body-scroll-lock": "^3.0.2",
"box-shadow-pixels": "0.0.4",
"buffer": "^6.0.3",
"canvas-toBlob": "^1.0.0",
"css-loader": "^3.2.0",
"dotenv-webpack": "^8.0.1",
"file-loader": "^6.2.0",
"file-saver": "^2.0.2",
"gif-encoder": "^0.7.2",
"gm": "^1.23.1",
"immutable": "^3.8.2",
"lost": "^8.3.1",
"oauth": "^0.9.15",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-reporter": "^6.0.1",
"precss": "^2.0.0",
"prop-types": "^15.7.2",
"pug": "^2.0.4",
"react": "^16.8.6",
"react-addons-pure-render-mixin": "^15.6.2",
"react-addons-shallow-compare": "^15.6.2",
"react-beautiful-dnd": "^12.1.1",
"react-color": "^2.18.1",
"react-cookie-consent": "^5.2.0",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.8.6",
"react-ga": "^3.3.1",
"react-modal": "^3.9.1",
"react-redux": "^7.1.0",
"react-router-dom": "^6.16.0",
"react-transform-hmr": "^1.0.4",
"react-transition-group": "^2.3.1",
"redux": "^4.0.4",
"redux-undo": "^1.0.0-beta9",
"shortid": "^2.2.14",
"stream-browserify": "^3.0.0",
"style-loader": "^0.23.1",
"styled-components": "^5.2.0",
"styled-theming": "^2.2.0",
"temp": "^0.9.0",
"tinykeys": "^1.1.0",
"twitter": "^1.7.1",
"url-loader": "^4.1.1",
"util": "^0.12.5",
"whatwg-fetch": "^2.0.4"
},
"engines": {
"node": "16.x.x",
"npm": "8.x.x"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@babel/runtime-corejs2": "^7.5.4",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-react-transform": "^3.0.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.3.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^3.0.0",
"jest": "^24.8.0",
"jest-canvas-mock": "^2.3.1",
"lint-staged": "^9.2.0",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^1.18.2",
"stylelint": "^10.1.0",
"stylelint-config-lost": "0.0.3",
"stylelint-config-recommended": "^2.2.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^6.1.1",
"webpack-dev-server": "^4.15.1",
"webpack-hot-middleware": "^2.25.4"
}
}