-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.18 KB
/
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
{
"name": "express-typescript-babel",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"clean": "rm -rf build && rm -rf dist",
"tsc": "node ./node_modules/.bin/tsc",
"babel": "node ./node_modules/.bin/babel --presets es2015 build --out-dir dist --source-maps",
"copy-files": "cp package.json dist/ && cp -r public dist/ && cp -r node_modules dist/",
"build": "yarn run clean && yarn run tsc && yarn run babel && yarn run copy-files",
"package": "zip -r express-typescript-babel.zip dist",
"test": "echo 'no tests yet...'"
},
"dependencies": {
"body-parser": "~1.18.2",
"cookie-parser": "~1.4.3",
"debug": "~3.1.0",
"express": "~4.16.2",
"morgan": "~1.9.0",
"serve-favicon": "~2.4.5"
},
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/cookie-parser": "^1.3.30",
"@types/debug": "^0.0.30",
"@types/express": "^4.0.35",
"@types/morgan": "^1.7.32",
"@types/node": "^8.0.53",
"@types/serve-favicon": "^2.2.28",
"babel-cli": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"copyfiles": "^1.2.0",
"typescript": "^2.1.6"
}
}