-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 972 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 972 Bytes
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
{
"name": "@nativeweb/build",
"version": "1.3.1",
"description": "🧱 Build tool with esbuild for Native Web.",
"repository": "nativew/build",
"author": "Antoine Boulanger (https://github.com/antoineboulanger)",
"license": "ISC",
"exports": "./src/index.js",
"main": "src/index.js",
"type": "module",
"scripts": {
"format": "prettier --write --ignore-unknown '**/*'"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.12",
"esbuild-plugin-babel": "^0.2.3",
"esbuild-plugin-pipe": "^0.2.0",
"esbuild-plugin-postcss-literal": "^0.2.1",
"esbuild-plugin-svg": "^0.1.0",
"esbuild-serve": "^1.0.1",
"postcss-custom-media": "^8.0.0",
"postcss-nesting": "^7.0.1"
},
"devDependencies": {
"prettier": "^2.2.1"
},
"files": [
"src"
],
"keywords": [
"esbuild",
"serve",
"live reload",
"bundle",
"build",
"minify",
"postcss",
"babel",
"web components"
]
}