-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.85 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
73
74
{
"name": "hoichi.io",
"private": true,
"dependencies": {
"@most/core": "^1.2.3",
"@most/dom-event": "^2.0.0",
"@most/hold": "^3.0.0",
"@most/prelude": "^1.7.0",
"@most/scheduler": "^1.1.0",
"@types/mock-fs": "^3.6.30",
"@types/node": "^8.0.28",
"chokidar": "^1.7.0",
"dedent": "^0.7.0",
"front-matter": "^2.2.0",
"graceful-fs": "^4.1.11",
"gulp": "^4.0.2",
"gulp-sass": "3.1.0",
"gulp-sourcemaps": "^2.6.1",
"js-yaml": "^3.13.1",
"lodash": "^4.17.21",
"markdown-it": "^12.3.2",
"markdown-it-prism": "^2.0.5",
"marked": "^4.0.10",
"mkpath": "^1.0.0",
"most-from-array": "^1.0.1",
"most-from-event": "^1.1.1",
"most-last": "^2.1.0",
"path": "^0.12.7",
"prettier": "^1.10.2",
"ramda": "^0.25.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"reason-react": "^0.8.0",
"rss": "^1.2.2",
"slugify": "^1.3.1",
"ts-exhaustive-check": "^1.0.0"
},
"devDependencies": {
"@most/types": "^1.0.0",
"@types/chokidar": "^1.7.5",
"@types/core-js": "^2.5.0",
"@types/jest": "^23.3.1",
"@types/mkpath": "^0.1.29",
"@types/ramda": "^0.25.18",
"browser-sync": "^2.26.7",
"bs-platform": "^7.3.2",
"connect-modrewrite": "^0.8.2",
"jest": "^23.4.2",
"mock-fs": "^4.4.1",
"ts-jest": "^23.0.1",
"ts-node": "^7.0.0",
"typescript": "^2.8.3"
},
"scripts": {
"build": "tsc && bsb -make-world && gulp",
"clean": "rm -rf ./lib; rm -rf ./build",
"rebuild": "rm -rf ./node_modules && yarn && yarn run clean && yarn build"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testURL": "http://localhost",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}