-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 819 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
{
"name": "cider-plugin-template",
"version": "1.0.0",
"description": "A template for building Cider plugins",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c --environment NODE_ENV:production",
"start": "rollup -c -w --environment NODE_ENV:development",
"deploy": "yarn build && gh-pages -b main -d dist"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.17.3",
"@babel/core": "^7.17.4",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"gh-pages": "^3.2.3",
"rollup": "^2.67.3",
"rollup-plugin-copy": "^3.4.0"
},
"dependencies": {
"dotenv": "^16.0.0"
}
}