-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.95 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
{
"name": "videojs-react-course-assistant",
"version": "1.0.0",
"description": "",
"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",
"netlify": "node ./create-env.js && npm run build",
"start": "webpack-dev-server --open --mode development"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.1",
"dotenv-webpack": "^1.7.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.7.1",
"mini-css-extract-plugin": "^0.6.0",
"prettier": "^1.17.0",
"react-test-renderer": "^16.8.6",
"url-loader": "^1.1.2",
"video.js": "^7.5.4",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1"
},
"lint-staged": {
"*.{js,jsx}": [
"npm run pretty-quick",
"npm run lint",
"git add"
]
},
"precommit": "NODE_ENV=production ./node_modules/.bin/lint-staged",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"core-js": "^2.6.5",
"dotenv": "^7.0.0",
"linaria": "^1.3.1",
"nanoid": "^2.0.1",
"react": "16.8.6",
"react-dom": "16.8.6",
"videojs-react": "github:padraigfl/videojs-react",
"videojs-youtube": "^2.6.0"
}
}