-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 854 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
29
30
{
"name": "00-boilerplate",
"version": "1.0.0",
"description": "This is just a simple boiler plate that will let us having a playground for our examples.",
"main": "index.js",
"scripts": {
"start": "run-p -l type-check:watch start:dev",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"start:dev": "parcel ./src/index.html",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^13.9.0",
"@types/topojson-client": "^3.0.0",
"npm-run-all": "^4.1.5",
"parcel": "^1.12.4",
"rimraf": "^3.0.2",
"typescript": "^3.7.5"
},
"dependencies": {
"@types/d3": "^5.7.2",
"d3": "^5.15.0",
"d3-composite-projections": "^1.3.2",
"topojson-client": "^3.1.0"
}
}