-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.27 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
{
"name": "pixels",
"version": "0.1.0",
"private": true,
"homepage": "https://lexcast.github.io/pixels/",
"dependencies": {
"autoprefixer": "^9.8.0",
"delta-e": "^0.0.7",
"lodash.memoize": "^4.1.2",
"nearest-color": "^0.4.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-dropzone": "^11.0.1",
"react-scripts": "3.4.1",
"react-virtualized": "^9.21.2",
"reselect": "^4.0.0",
"rgbquant": "^1.1.2"
},
"scripts": {
"start": "react-scripts start",
"start:tw": "./node_modules/.bin/postcss ./src/styles/tailwind.css -o ./src/styles/index.css",
"build": "react-scripts build",
"build:tw": "./node_modules/.bin/postcss ./src/styles/tailwind.css -o ./src/styles/index.css --env production",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "yarn build:tw && yarn build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^2.2.0",
"postcss-cli": "^7.1.1",
"tailwindcss": "^1.4.6"
}
}