-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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": "isic",
"private": true,
"license": "Apache-2.0",
"devDependencies": {
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/typography": "^0.5.0",
"autoprefixer": "^10.4.4",
"browser-sync": "^2.27.9",
"buffer": "^5.5.0||^6.0.0",
"daisyui": "^2.13.6",
"npm-run-all": "^4.1.5",
"parcel": "^2.4.1",
"postcss": "^8.4.12",
"prettier": "^3.4.2",
"prettier-plugin-jinja-template": "^2.0.0",
"remixicon": "^2.5.0",
"rimraf": "^3.0.2",
"tailwindcss": "^3.0.24"
},
"scripts": {
"build": "npm-run-all --sequential build:clean build:parcel",
"build:clean": "rimraf ./isic/core/static/core/dist",
"build:parcel": "parcel build",
"start": "npm-run-all --parallel start:parcel start:sync",
"start:parcel": "parcel watch",
"start:sync": "browser-sync start --config ./dev/browser-sync.config.js"
},
"targets": {
"styles": {
"source": "./node-src/styles.pcss",
"distDir": "./isic/core/static/core/dist"
},
"cog": {
"source": "./node-src/cog.mjs",
"distDir": "./isic/core/static/core/dist"
}
},
"browserslist": "> 0.5%",
"postcss": {
"plugins": {
"postcss-nested": {},
"tailwindcss": {}
}
},
"dependencies": {
"ol": "^9.2.4"
}
}