-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.26 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
74
{
"name": "customized",
"version": "1.0.0",
"description": "A DVD Menu Styled Website",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/jest",
"test:watch": "./node_modules/.bin/jest --watch",
"lint": "./node_modules/.bin/eslint src/ ",
"pretty-quick": "./node_modules/.bin/pretty-quick --staged",
"build": "webpack --mode production && cp -r public/static dist && cp _redirects dist",
"start": "webpack-dev-server --hot --open --mode development"
},
"lint-staged": {
"*.{js,jsx}": [
"npm run pretty-quick",
"npm run lint",
"git add"
]
},
"precommit": "NODE_ENV=production ./node_modules/.bin/lint-staged",
"license": "MIT",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@linaria/babel-preset": "^5.0.4",
"@linaria/core": "^6.0.0",
"@linaria/react": "^6.0.0",
"@reach/router": "^1.2.1",
"acorn": "^7.1.1",
"dotenv": "^8.2.0",
"linaria": "^6.0.0",
"nanoid": "^2.1.7",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"styled-components": "^4.4.1",
"video.js": "^8.10.0",
"videojs": "^1.0.0",
"videojs-youtube": "^2.6.0"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@linaria/webpack5-loader": "^5.0.4",
"@webpack-cli/serve": "^2.0.5",
"@wyw-in-js/webpack-loader": "^0.3.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^9.1.3",
"core-js": "3.6.5",
"css-loader": "^6.10.0",
"eslint": "^6.7.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.4",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.0.0",
"prettier": "^1.19.1",
"react-hot-loader": "^4.12.20",
"react-test-renderer": "^16.12.0",
"url-loader": "^4.1.1",
"webpack": "^5.0.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}