-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.67 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
{
"name": "tailwindparcel",
"version": "1.0.0",
"main": "index.js",
"author": "Chilly Orange <[email protected]>",
"license": "MIT",
"scripts": {
"postcss:watch": "postcss src/css/index.pcss -o src/css/index.css --env development -w",
"postcss:build": "postcss src/css/index.pcss -o src/css/index.css --env production",
"parcel:serve": "parcel src/index.html",
"parcel:watch": "parcel watch src/index.html",
"parcel:build": "parcel build src/index.html",
"clean": "rm -rf dist .cache",
"build": "npm-run-all -s clean postcss:build parcel:build",
"start": "npm-run-all -s clean -p postcss:watch parcel:serve"
},
"dependencies": {
"@babel/runtime": "^7.13.10",
"autoprefixer": "^9.8.6",
"dotenv": "^5.0.1",
"leaflet": "^1.7.1",
"parcel-bundler": "^1.12.4",
"postcss": "^7.0.35",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.1"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.13.10",
"@fullhuman/postcss-purgecss": "^3.0.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cssnano": "^4.1.10",
"eslint": "^7.14.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^8.3.0",
"postcss-fontpath": "^1.0.0",
"posthtml-expressions": "^1.7.0",
"posthtml-include": "^1.6.0",
"posthtml-load-config": "^2.0.0",
"stylelint-config-standard": "^20.0.0"
}
}