-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
38
39
{
"name": "ugc",
"version": "1.0.0",
"description": "Examples for UGC Turbo-Components",
"main": "src/index.js",
"scripts": {
"start": "NODE_ENV=production PORT=9008 node ./dist/index.js",
"start:dev": "NODE_ENV=development nodemon -e ts -w ./src -x npm run watch",
"start:debug": "node $NODE_DEBUG_OPTION ./dist/index.js",
"watch": "tsc && node ./dist/index.js",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/turboext/ugc.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/turboext/ugc/issues"
},
"homepage": "https://github.com/turboext/ugc#readme",
"dependencies": {
"body-parser": "1.18.3",
"cookie-parser": "1.4.3",
"express": "4.16.4",
"fs-extra": "7.0.1",
"morgan": "1.9.1"
},
"devDependencies": {
"@types/body-parser": "1.17.0",
"@types/cookie-parser": "1.4.1",
"@types/express": "4.16.1",
"@types/fs-extra": "5.0.5",
"@types/morgan": "1.7.35",
"nodemon": "1.18.9",
"typescript": "3.2.4"
}
}