-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.04 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
{
"name": "decoverto-example-javascript",
"description": "JavaScript + Babel example for Decoverto",
"main": "src/index.js",
"private": true,
"repository": "github:decoverto/example-javascript",
"author": "Matthias Kunnen",
"license": "MIT",
"bugs": {
"url": "https://github.com/decoverto/example-javascript/issues"
},
"homepage": "https://github.com/decoverto/example-javascript",
"scripts": {
"build": "parcel build index.html",
"lint": "eslint index.js \"src/**/*.js\"",
"start": "parcel index.html --open"
},
"dependencies": {
"bignumber.js": "^9.0.1",
"decoverto": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@matthiaskunnen/eslint-config-base": "^2.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.23.0",
"parcel": "^2.0.0-beta.2"
}
}