-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 2.07 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
{
"name": "ots_website",
"version": "2.0.0",
"description": "OpenTechSchool website 2.0",
"main": "index.js",
"scripts": {
"lint": "eslint --fix --ext .tsx,.js pages/**/** components/**/**",
"lint:watch": "nodemon --exec \"npm run lint || exit 1\" --ext ts,js",
"clean-cache": "rimraf -rf ./node_modules/.cache",
"prod": "next start",
"open": "sleepms 5000 && open http://localhost:3000",
"dev": "npm run clean-cache && npm run lint && concurrently \"npm run lint:watch\" next \"npm run open\" --names \"🛂,🏗️,🖥️\" --prefix name ",
"build": "npm run clean-cache && next build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"keywords": [
"ots",
"next"
],
"dependencies": {
"@material-ui/core": "^4.11.3",
"date-fns": "^2.17.0",
"fetch-jsonp": "^1.2.1",
"gray-matter": "^4.0.3",
"next": "^12.1.5",
"raw-loader": "^4.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-markdown": "^5.0.3",
"react-twitter-embed": "^4.0.4",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@material-ui/icons": "^4.11.3",
"@types/material-ui": "^0.21.12",
"@types/node": "^14.18.13",
"@types/react": "^17.0.44",
"@types/react-dom": "^17.0.15",
"@types/webpack-env": "^1.16.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-eslint": "^10.1.0",
"concurrently": "^6.5.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"husky": "^5.2.0",
"lodash": "^4.17.21",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"prop-types": "^15.8.1",
"sleep-ms": "^2.0.1",
"typescript": "^4.6.3"
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"jsxBracketSameLine": false
}
}