-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.37 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
{
"name": "SentSync",
"version": "0.0.1",
"description": "Chrome extension for syncing video progress with your friends",
"main": "src/index.js",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^8.2.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"copy-webpack-plugin": "^4.0.1",
"crx-webpack-plugin": "^0.1.5",
"eslint": "^4.2.0",
"eslint-plugin-react": "^7.1.0",
"rimraf": "^2.6.1",
"webpack": "^5.0.0",
"webpack-cli": "^4.7.2"
},
"scripts": {
"start": "webpack --watch --progress",
"build": "webpack --progress"
},
"nodemonConfig": {
"ignore": [
"dist/",
"node_modules"
],
"execMap": {
"js": "node"
},
"ext": "js html css",
"verbose": true
},
"dependencies": {
"css-loader": "^5.2.6",
"file-loader": "^6.2.0",
"jquery": "^3.6.0",
"nodemon": "^1.14.12",
"sass": "^1.35.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.0.0",
"vue": "^2.5.11",
"vue-i18n": "^8.24.5",
"vue-loader": "^15.9.7",
"vue-template-compiler": "^2.4.4"
}
}