-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 860 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 860 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
{
"name": "source",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tsc:watch": "tsc --watch",
"start:single": "concurrently --kill-others --names tsc,web-dev-server \"npm run tsc:watch\" \"web-dev-server --app-index index.html --node-resolve --open --watch\"",
"start": "concurrently --kill-others --names tsc,web-dev-server \"npm run tsc:watch\" \"web-dev-server --config web-dev-server.config.js\"",
"build": "rimraf dist && tsc && rollup -c rollup.config.js"
},
"author": "v4lodyapapikyan",
"license": "ISC",
"dependencies": {
"fs": "^0.0.1-security"
},
"devDependencies": {
"@open-wc/building-rollup": "^1.9.4",
"@web/dev-server": "0.0.29",
"concurrently": "^5.3.0",
"deepmerge": "^4.2.2",
"rimraf": "^3.0.2",
"rollup": "^2.34.2",
"typescript": "^4.1.3"
}
}