-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 981 Bytes
/
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
{
"name": "snedit-config-generator",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"clean": "rm dist/bundle.js",
"start": "yarn run watch:css && parcel src/index.html",
"build-prod": "yarn run build:css && parcel build src/index.html -d docs",
"build:css": "postcss src/assets/tailwind.css -o src/assets/main.css",
"watch:css": "postcss src/assets/tailwind.css -o src/assets/main.css",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"dependencies": {
"js-yaml": "^3.14.0",
"react": ">=15",
"react-dom": "^16.13.1",
"react-icons-kit": "^1.3.1"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"autoprefixer": "^9.8.4",
"gh-pages": "^3.1.0",
"parcel-bundler": "^1.12.4",
"postcss-cli": "^7.1.1",
"tailwindcss": "^1.4.6"
}
}