-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 911 Bytes
/
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
{
"private": true,
"name": "wordcrumbs",
"version": "0.1.0",
"main": "./src/index.ts",
"repository": "git@github.com:yszk0123/wordcrumbs.git",
"author": "Yuji Suzuki <y0suzuki0123@gmail.com>",
"license": "MIT",
"scripts": {
"do": "ts-node src/index.ts --transpile-only"
},
"devDependencies": {
"@types/express": "^4.17.1",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jsdom": "^12.2.4",
"@types/kuromoji": "^0.1.0",
"@types/lodash": "^4.14.138",
"@types/node": "^12.7.4",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"ts-node": "^8.3.0",
"typescript": "^3.6.2"
},
"dependencies": {
"express": "^4.17.1",
"filenamify": "^4.1.0",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^15.1.1",
"kuromoji": "^0.1.2",
"lodash": "^4.17.19",
"make-dir": "^3.0.0",
"react": "^16.9.0",
"react-dom": "^16.9.0"
}
}