forked from DanWahlin/TypeScriptDemos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·39 lines (39 loc) · 1 KB
/
package.json
File metadata and controls
executable file
·39 lines (39 loc) · 1 KB
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
{
"name": "typescript-examples",
"version": "0.0.1",
"scripts": {
"plunk": "gulp build-plunkers",
"add-bp": "gulp add-example-boilerplate",
"rm-bp": "gulp remove-example-boilerplate",
"all": "npm run rm-bp && npm run add-bp && npm run plunk",
"postinstall": "",
"tsc": "tsc",
"tsc:w": "tsc --watch",
"start": "concurrently \"npm run tsc:w\" \"superstatic\" "
},
"dependencies": {
"superstatic": "^4.0.2"
},
"devDependencies": {
"canonical-path": "0.0.2",
"fs-extra": "^0.24.0",
"globby": "^4.0.0",
"jsdom": "^8.0.2",
"lodash": "^3.10.1",
"minimatch": "^2.0.10",
"mkdirp": "^0.5.1",
"q": "^1.4.1",
"gulp": "^3.9.1",
"gulp-task-listing": "^1.0.1",
"gulp-util": "^3.0.7",
"gulp-debug": "^2.1.2",
"gulp-inject": "^4.0.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-tslint": "^4.3.3",
"gulp-typescript": "^2.12.1",
"tslint": "^3.6.0",
"typescript": "^1.8.9",
"typings":"^0.7.9",
"concurrently": "^2.0.0"
}
}