-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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
{
"name": "shiritori",
"version": "1.0.0",
"description": "Shiritori (しりとり) is a Japanese word game where you take the last letter or kana of the previous word and provide a word that begins with the same kana. It's a wonderful educational and competitive game for Japanese language learners!",
"private": true,
"scripts": {
"test": "jest",
"build": "webpack",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hwanderlust/shiritori.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hwanderlust/shiritori/issues"
},
"homepage": "https://github.com/hwanderlust/shiritori#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"lodash": "^4.17.20",
"node-fetch": "^2.6.1",
"wanakana": "^4.0.2"
},
"devDependencies": {
"@types/jest": "^26.0.13",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^4.2.2",
"csvtojson": "^2.0.10",
"file-loader": "^6.1.0",
"html-loader": "^1.3.0",
"html-webpack-plugin": "^4.4.1",
"jest": "^26.4.2",
"sass": "^1.26.10",
"sass-loader": "^10.0.2",
"source-map-loader": "^1.1.0",
"style-loader": "^1.2.1",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}