-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.54 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "weehan-dev-env",
"version": "1.0.0",
"description": "Weehan cross-os dev env with docker",
"main": "app.js",
"scripts": {
"tsc": "./node_modules/.bin/tsc",
"ts-node": "./node_modules/.bin/ts-node",
"dev:docker": "docker run -it --rm -p 4000:4000 --volume=`pwd`:/root/app --name weehan-dev changhoi/weehan-dev-env:0.1",
"dev:local": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'npm run ts-node' src/app.ts",
"build": "npm run tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weehan-dev/docker-dev-env.git"
},
"keywords": [
"weehan",
"docker",
"dev",
"typescript"
],
"author": "changhoi",
"license": "ISC",
"bugs": {
"url": "https://github.com/weehan-dev/kakao-chatbot/issues"
},
"homepage": "https://github.com/weehan-dev/kakao-chatbot#readme",
"dependencies": {
"dotenv": "^8.1.0",
"express": "^4.17.1",
"mysql2": "^1.7.0",
"sequelize": "^5.19.1"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@types/chai": "^4.2.3",
"@types/express": "^4.17.1",
"@types/mocha": "^5.2.7",
"@types/sequelize": "^4.28.5",
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"chai": "^4.2.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.1",
"nodemon": "^1.19.3",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
}
}