-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.25 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
{
"name": "@reactjs-id/stream-overlays",
"version": "1.0.0",
"description": "Dynamic stream overlays/widgets for OBS, used on the React.JS Indonesia Twitch channel.",
"main": "N/A",
"repository": "https://github.com/reactjs-id/stream-overlays",
"author": "Resi Respati <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"format": "prettier --write \"./**/*.{ts,tsx}\"",
"lint": "eslint \"**/*.{ts,tsx}\" \"*.config.js\"",
"now-build": "cross-env BUILD_TARGET=serverless next build",
"test": "npm run type-check && npm run lint",
"type-check": "tsc --noEmit"
},
"dependencies": {
"babel-plugin-module-resolver": "^3.2.0",
"date-fns": "^2.8.0",
"modern-normalize": "^0.5.0",
"next": "^9.1.4",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@types/node": "^12.12.11",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/styled-jsx": "^2.2.8",
"cross-env": "^6.0.3",
"eslint": "6.6.0",
"eslint-config-blvd": "^1.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"prettier": "^1.19.1",
"typescript": "^3.7.2"
}
}