forked from iKettles/framer-esm-utils
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 763 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 763 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
{
"name": "esmbuild",
"version": "1.0.8",
"main": "",
"license": "MIT",
"author": {
"name": "Koen Bok"
},
"scripts": {
"serve": "yarn; node esmbuild/esmbuild serve ./src 8000",
"build": "yarn; node esmbuild/esmbuild build ./src dist",
"deploy": "yarn version; git push --tags; git push",
"release": "yarn run build; mkdir -p release; cp -Rf dist release/$npm_package_name@$npm_package_version"
},
"devDependencies": {
"@types/react": "^17.0.14",
"esbuild": "^0.12.15",
"framer-motion": "^4.1.17",
"fs-extra": "^10.0.0",
"globby": "^11.0.4",
"postcss": "^8.3.5",
"postcss-modules": "^4.1.3",
"react": "^17.0.2",
"react-use": "^17.2.4",
"tmp": "^0.2.1",
"typescript": "^4.3.5"
}
}