-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.07 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.07 KB
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
{
"name": "spotless",
"version": "1.0.0",
"description": "Efortless Spotify",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --mode development --hot",
"build-popup": "webpack --config ./popup/webpack.prod.js --mode production",
"build-background": "webpack --config ./background/webpack.prod.js --mode production",
"build-popup-dev": "webpack --config ./popup/webpack.config.js --mode development",
"build-background-dev": "webpack --config ./background/webpack.config.js --mode development",
"build-content-dev": "webpack --config ./content-script/webpack.config.js --mode development",
"build-content": "webpack --config ./content-script/webpack.prod.js --mode production",
"build": "npm run build-popup && npm run build-background && npm run build-content && npm run copy-manifest && npm run copy-images",
"build-dev": "npm run build-popup-dev && npm run build-background-dev && npm run build-content-dev && npm run copy-manifest && npm run copy-images",
"copy-manifest": "cp ./manifest.json ./dist",
"copy-images": "cp ./public/images/* ./dist"
},
"author": "Dang Dien (ddphan)",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.1.2",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "7.0.0",
"babel-loader": "8.0.4",
"babel-polyfill": "6.26.0",
"css-loader": "1.0.0",
"html-webpack-plugin": "3.2.0",
"less": "3.8.1",
"less-loader": "4.1.0",
"redux-devtools": "3.4.1",
"redux-devtools-dock-monitor": "1.1.3",
"redux-devtools-log-monitor": "1.4.0",
"redux-logger": "3.0.6",
"style-loader": "0.23.1",
"url-loader": "1.1.2",
"webpack": "4.21.0",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.9"
},
"dependencies": {
"axios": "0.18.0",
"normalizr": "3.3.0",
"prop-types": "15.6.2",
"react": "16.5.2",
"react-chrome-redux": "2.0.0-alpha.4",
"react-dom": "16.5.2",
"react-redux": "5.0.7",
"redux": "4.0.1",
"redux-thunk": "2.3.0",
"reselect": "4.0.0"
}
}