mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
cb312eb18b
* added example for using typings-for-css-modules-loader * Update examples/with-typings-for-css-modules/README.md * Update examples/with-typings-for-css-modules/README.md * Update examples/with-typings-for-css-modules/next.config.js
26 lines
566 B
JSON
26 lines
566 B
JSON
{
|
|
"name": "with-typings-for-css-modules",
|
|
"version": "1.0.0",
|
|
"license": "ISC",
|
|
"scripts": {
|
|
"dev": "next",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"type-check": "tsc"
|
|
},
|
|
"dependencies": {
|
|
"@zeit/next-css": "^1.0.1",
|
|
"@zeit/next-typescript": "^1.1.1",
|
|
"next": "latest",
|
|
"react": "16.4.2",
|
|
"react-dom": "16.4.2",
|
|
"typings-for-css-modules-loader": "^1.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/next": "7.0.2",
|
|
"@types/react": "16.4.16",
|
|
"@types/react-dom": "16.0.9",
|
|
"typescript": "3.1.3"
|
|
}
|
|
}
|