-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.24 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
71
72
73
{
"name": "la1tv-frontend",
"version": "1.0.0",
"description": "New website frontend written in Node",
"main": "index.js",
"scripts": {
"dev": "yarn react-env --prefix PUBLIC --dest ./static && next dev",
"jest": "yarn test:coverage --coverage --watch",
"clean": "git clean -xfdq --exclude=.env",
"build": "next build",
"test": "yarn test:lint && yarn test:coverage",
"test:lint": "eslint ./ --ext js,jsx",
"test:coverage": "jest",
"pretest": "cp .env.template .env",
"reportCoverage": "echo 'coveralls coming soon'",
"start": "yarn react-env --prefix PUBLIC --dest ./static && NODE_ENV=production next start",
"storybook": "start-storybook -p 6006"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LA1TV/Website-Frontend.git"
},
"keywords": [
"web",
"frontend",
"la1tv",
"node",
"nextjs"
],
"author": "LA1TV",
"license": "MIT",
"bugs": {
"url": "https://github.com/LA1TV/Website-Frontend/issues"
},
"homepage": "https://github.com/LA1TV/Website-Frontend#readme",
"dependencies": {
"@beam-australia/react-env": "^3.1.1",
"@storybook/addon-controls": "^6.5.9",
"isomorphic-unfetch": "^3.0.0",
"next": "12",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-microsoft-clarity": "^1.1.2",
"redux": "^4.2.0",
"styled-components": "^4.4.0",
"video.js": "^7.20.3"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@storybook/addon-a11y": "^6.5.9",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-backgrounds": "^6.5.9",
"@storybook/addon-console": "^1.2.3",
"@storybook/addon-storysource": "^6.5.9",
"@storybook/addon-viewport": "^6.5.9",
"@storybook/react": "^6.5.9",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^3.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.2",
"eslint": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-standard": "^4.0.1",
"jest": "^28.1.2",
"prettier": "^1.18.2"
}
}