mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
cbfdcce32d
* Update typescript examples to use 1.0.1 of next-typescript * Add .babelrc modifications to upgraded typescript examples
30 lines
696 B
JSON
30 lines
696 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": "1.0.1",
|
|
"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"
|
|
}
|
|
}
|