-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.23 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
{
"name": "onboard",
"version": "1.0.0",
"description": "",
"main": "src/index",
"scripts": {
"start": "parcel index.html --open",
"test": "jest",
"prebuild": "run-s clean",
"build": "parcel build index.html --no-source-maps",
"clean": "rimraf ./dist",
"lint": "run-s lint:code",
"lint:code": "eslint --ext ts,tsx src",
"tsc": "tsc"
},
"dependencies": {
"d3": "6.2.0"
},
"devDependencies": {
"@types/d3": "5.16.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint": "^7.13.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.6.1",
"rimraf": "^3.0.2",
"sass": "^1.28.0",
"ts-jest": "^26.4.3",
"typescript": "^4.0.5"
},
"keywords": []
}