forked from datopian/chart-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.39 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
{
"name": "chart-builder",
"version": "0.0.1",
"private": true,
"module": "dist/index.js",
"main": "dist/index.js",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@testing-library/jest-dom": "^4.0.0",
"@testing-library/react": "^9.1.1",
"react-cosmos": "^4.8.1",
"react-scripts": "3.1.0",
"tailwindcss": "^1.1.1"
},
"dependencies": {
"formik": "^1.5.8",
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"scripts": {
"cosmos": "yarn tailwind:css && cosmos",
"cosmos:export": "cosmos-export",
"start": "yarn tailwind:css && react-scripts start",
"build": "tailwind:css && react-scripts build",
"build:package": "rm -rf dist/ && mkdir dist && NODE_ENV=production npx babel src/ -d dist/ --copy-files",
"test": "react-scripts test",
"tailwind:css": "tailwind build src/css/tailwind.src.css -c tailwind.js -o src/css/tailwind.css",
"eject": "react-scripts eject"
},
"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"
]
}
}