-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1022 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
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "isomorphic-ts",
"version": "1.0.5",
"description": " Isomorphic TypeScript startup project for Node.JS and Browser to share codes.",
"main": "server/out.js",
"repository": {
"type": "git",
"url": "https://github.com/yoshiki-okawa/isomorphic-ts.git"
},
"bugs": {
"url": "https://github.com/yoshiki-okawa/isomorphic-ts/issues"
},
"scripts": {
"build": "gulp build",
"build-prod": "gulp build-prod",
"start": "gulp start",
"test": "gulp test"
},
"keywords": [
"isomorphic",
"typescript",
"startup",
"template",
"boilerplate",
"node",
"share"
],
"author": "Yoshiki Okawa",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^2.2.41",
"browserify": "^14.4.0",
"gulp": "^3.9.1",
"gulp-sourcemaps": "^2.6.0",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"mocha": "^3.4.2",
"tsify": "^3.0.1",
"typescript": "^2.4.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}