-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.17 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
40
{
"name": "kadai-store-api",
"version": "1.0.0",
"description": "devoirs-coreを使用してMS Teamsで出されている課題の情報を取得し、APIを提供します。",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "run-s compile replace",
"compile": "tsc",
"replace": "node ./replace_extension.js",
"start": "node ./dist/index.js",
"dev": "ts-node ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/takara2314/kadai-store-api.git"
},
"author": "Takara Hamaguchi",
"license": "GPL-3.0 License",
"bugs": {
"url": "https://github.com/takara2314/kadai-store-api/issues"
},
"homepage": "https://github.com/takara2314/kadai-store-api#readme",
"devDependencies": {
"@types/express": "^4.17.9",
"@types/fs-extra": "^9.0.6",
"@types/js-yaml": "^4.0.0",
"@types/node": "^14.14.20",
"npm-run-all": "^4.1.5",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"devoirs-core": "^0.2.2",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"js-yaml": "^4.0.0",
"moment-timezone": "^0.5.32"
}
}