forked from cedmax/youmightnotneed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.87 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
75
76
{
"name": "react-static-starter",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/cedmax/youmightnotneed",
"license": "MIT",
"scripts": {
"new": "node modules/new",
"contributors": "node modules/contributors",
"serve": "serve dist -p 3000",
"pretest": "next lint",
"test": "jest",
"posttest": "codecov --disable=gcov",
"start": "next dev",
"build": "next build && next export -o dist/"
},
"dependencies": {
"axios": "0.27.2",
"date-fns": "3.5.0",
"is-mobile": "^3.1.1",
"lodash": "4.17.21",
"next": "^12.1.6",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-highlight": "0.12.0",
"react-modal": "^3.15.1",
"react-scroll-up": "^1.4.0",
"react-simple-linkify": "1.0.3",
"styled-components": "5.3.5"
},
"devDependencies": {
"@exampledev/new.css": "^1.1.3",
"@swc/core": "^1.2.192",
"@swc/jest": "^0.2.21",
"cheerio": "1.0.0-rc.11",
"codecov": "3.8.3",
"codesandbox": "2.2.3",
"eslint": "^8.16.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "8.5.0",
"eslint-config-react-tools": "1.1.7",
"gh-got": "^9.0.0",
"glob": "8.0.3",
"husky": "8.0.1",
"inquirer": "8.2.4",
"jest": "^28.1.0",
"jest-date-mock": "1.0.8",
"jest-environment-jsdom": "^28.1.3",
"lint-staged": "12.4.2",
"prettier": "2.6.2",
"readme-filename": "^1.0.0",
"replace-in-file": "^6.3.5",
"require-markdown": "1.2.0",
"serve": "13.0.2"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint"
]
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"./src/content/**/*.js"
],
"testEnvironment": "jsdom",
"setupFiles": [
"./jest.setup.js"
],
"transform": {
"^.+\\.(t|j)sx?$": "@swc/jest"
}
}
}