forked from phuocng/csslayout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.75 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
{
"name": "csslayout",
"description": "A collection of popular layouts and patterns made with CSS",
"author": {
"name": "Nguyen Huu Phuoc",
"email": "[email protected]",
"url": "https://twitter.com/nghuuphuoc"
},
"homepage": "https://csslayout.io",
"keywords": [
"CSS grid",
"CSS flexbox",
"CSS layout",
"CSS patterns"
],
"repository": {
"type": "git",
"url": "https://github.com/1milligram/csslayout"
},
"bugs": {
"url": "https://github.com/1milligram/csslayout/issues"
},
"license": "MIT",
"scripts": {
"build": "next build",
"dev": "next dev",
"format": "prettier --write \"**/*.+(css|html|json|js|jsx|mdx|scss|ts|tsx)\"",
"preexport": "npm run build",
"export": "next export",
"deploy": "npm run export && netlify deploy --prod --dir=out",
"lint": "tslint -c tslint.json -o tslint.log 'client/**/*.{ts,tsx}'",
"screenshot": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node bin/generateScreenshot.ts"
},
"dependencies": {
"@1milligram/design": "^0.4.1",
"@mdx-js/loader": "^2.0.0",
"@mdx-js/react": "^2.0.0",
"@next/mdx": "^12.1.0",
"next": "^12.1.0",
"prism-react-renderer": "^1.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"puppeteer": "^13.4.0",
"prettier": "^2.5.1",
"sass": "^1.49.9",
"serve": "^13.0.2",
"typescript": "^4.5.5",
"ts-loader": "^9.2.6",
"ts-node": "^10.5.0",
"tslint": "^6.1.3",
"tslint-react": "^5.0.0"
}
}