-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "use-tailwind-preset",
"version": "2.0.1",
"description": "Quickly use Tailwind in new Laravel projects",
"main": "build/index.js",
"bin": "build/index.js",
"author": "Christopher Pitt <[email protected]>",
"license": "MIT",
"scripts": {
"build": "babel source --out-dir=build",
"prepare": "npm run build"
},
"files": [
"build"
],
"dependencies": {
"ink": "^2.6.0",
"ink-select-input": "^3.1.2",
"react": "^16.12.0"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.5",
"@babel/preset-react": "^7.7.4",
"@types/react": "^16.9.15"
},
"babel": {
"plugins": [
"@babel/plugin-proposal-class-properties"
],
"presets": [
"@babel/preset-react",
[
"@babel/preset-env",
{
"targets": {
"esmodules": true
}
}
]
]
}
}