-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.98 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "javascript-in-practice",
"version": "1.0.0",
"description": "JavaScriptの実践的な使い方を学ぶためのリポジトリです。",
"main": "index.js",
"scripts": {
"start": "npx gulp",
"build": "npx gulp build",
"test": "npx gulp test",
"format": "npx gulp format",
"slides": "npx gulp slides",
"docs": "npx gulp docs",
"watch": "npx gulp watch",
"deploy": "vercel",
"deploy:local": "vercel dev",
"deploy:heroku": "git push heroku wip/episode/00:master ",
"heroku-postbuild": "webpack --config ./webpack.config.js --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hiroshima-arc/javascript-in-practice.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hiroshima-arc/javascript-in-practice/issues"
},
"homepage": "https://github.com/hiroshima-arc/javascript-in-practice#readme",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@k2works/full-stack-lab": "^1.0.1",
"@marp-team/marp-cli": "^2.4.0",
"@types/jest": "^29.5.0",
"asciidoctor": "^2.2.6",
"asciidoctor-kroki": "^0.17.0",
"babel-loader": "^9.1.2",
"browser-sync": "^2.29.0",
"cpx": "^1.5.0",
"gulp": "^4.0.2",
"gulp-prettier": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.6",
"rimraf": "^4.4.0",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"webpack": "^5.76.2",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"testMatch": [
"**/**/*.test.js",
"**/**/*.test.ts"
]
},
"dependencies": {
"http-server": "^14.1.1"
}
}