mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
c5c5564dbf
* Added with-jest-typescript example with files and readme * Updated package.json As per the comment, updated the package.json so the info is same as in other examples. * Proper name in package.json
30 lines
698 B
JSON
30 lines
698 B
JSON
{
|
|
"name": "with-jest-typescript",
|
|
"version": "1.0.0",
|
|
"scripts": {
|
|
"test": "NODE_ENV=test jest",
|
|
"dev": "next",
|
|
"build": "next build",
|
|
"start": "next start"
|
|
},
|
|
"dependencies": {
|
|
"next": "^5.0.0",
|
|
"react": "^16.2.0",
|
|
"react-dom": "^16.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^22.2.2",
|
|
"@types/next": "^2.4.8",
|
|
"@types/react": "^16.0.41",
|
|
"@types/react-dom": "^16.0.4",
|
|
"@zeit/next-typescript": "^0.0.11",
|
|
"enzyme": "^3.3.0",
|
|
"enzyme-adapter-react-16": "^1.1.1",
|
|
"jest": "^22.4.3",
|
|
"react-addons-test-utils": "^15.6.2",
|
|
"react-test-renderer": "^16.2.0",
|
|
"ts-jest": "^22.4.2",
|
|
"typescript": "^2.7.2"
|
|
}
|
|
}
|