-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 909 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": "learning-ts-module2",
"version": "1.0.0",
"author": "hiep <[email protected]>",
"description": "Training Typescript - Module and external library",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "live-server",
"build:tags": "riot app gen/tags.js --ext rtg",
"build:typescript": "tsc --project app",
"build": "npm run build:tags && npm run build:typescript",
"watch:tags": "riot --watch --ext rtg --m app gen/tags.js",
"watch:typescript": "tsc --watch --project app",
"watch": "parallelshell \"npm run watch:tags\" \"npm run watch:typescript\""
},
"license": "MIT",
"devDependencies": {
"live-server": "^0.7.1",
"parallelshell": "^1.2.0",
"riot": "^2.2.2",
"tsd": "^0.6.3",
"typescript": "^1.5.3",
"typescript-simple": "2.0.0-beta.1"
},
"dependencies": {
"riotcontrol": "0.0.1"
}
}