-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.56 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
{
"name": "md-manuals",
"version": "1.0.0",
"license": "MIT",
"homepage": "https://masaxsuzu.github.io/md-manuals",
"devDependencies": {
"@parcel/transformer-image": "^2.3.2",
"@parcel/transformer-sass": "^2.3.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.1",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"autoprefixer": "^10.3.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.3",
"parcel": "^2.3.2",
"postcss-modules": "^4.2.2",
"prettier": "^2.4.1",
"sass": "^1.42.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"scripts": {
"clean:docs": "git rm ./docs -r",
"start": "yarn parcel src/index.html --open",
"build": "yarn parcel build src/index.html src/404.html",
"build:gh-pages": "yarn parcel build src/index.html src/404.html --public-url /md-manuals --dist-dir ./dist",
"test": "jest --env=jsdom",
"fmt": "prettier --write src",
"lint": "prettier --check src"
},
"dependencies": {
"@parcel/resolver-glob": "^2.3.2",
"bootstrap": "5.1.3",
"react": "^17.0.2",
"react-bootstrap": "^2.1.2",
"react-dom": "^17.0.2",
"react-responsive": "^9.0.0-beta.6",
"react-router-dom": "^6.2.1"
},
"jest": {
"preset": "ts-jest",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"moduleNameMapper": {
"\\.(css|less|scss|sass|jpg)$": "identity-obj-proxy"
},
"testMatch": [
"**/*.(test|spec).(ts|tsx|js)"
]
}
}