-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.32 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.32 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "UnTab",
"version": "0.1.0",
"description": "Minimal newtab with amazing wallpapers form Unsplash!",
"main": "src/index.js",
"author": "Suyash Katiyar",
"license": "MIT",
"private": false,
"scripts": {
"chrome-dev": "better-npm-run chrome-dev",
"chrome-prod": "better-npm-run chrome-prod",
"opera-dev": "better-npm-run opera-dev",
"opera-prod": "better-npm-run opera-prod",
"firefox-dev": "better-npm-run firefox-dev",
"firefox-prod": "better-npm-run firefox-prod"
},
"betterScripts": {
"chrome-dev": {
"command": "webpack --colors --display-error-details --config webpack.config.js",
"env": {
"NODE_ENV": "development",
"TARGET_BROWSER": "chrome"
}
},
"chrome-prod": {
"command": "webpack --colors --display-error-details --config webpack.prod.config.js",
"env": {
"NODE_ENV": "production",
"TARGET_BROWSER": "chrome"
}
},
"opera-dev": {
"command": "webpack --colors --display-error-details --config webpack.config.js",
"env": {
"NODE_ENV": "development",
"TARGET_BROWSER": "opera"
}
},
"opera-prod": {
"command": "webpack --colors --display-error-details --config webpack.prod.config.js",
"env": {
"NODE_ENV": "production",
"TARGET_BROWSER": "opera"
}
},
"firefox-dev": {
"command": "webpack --colors --display-error-details --config webpack.config.js",
"env": {
"NODE_ENV": "development",
"TARGET_BROWSER": "firefox"
}
},
"firefox-prod": {
"command": "webpack --colors --display-error-details --config webpack.prod.config.js",
"env": {
"NODE_ENV": "production",
"TARGET_BROWSER": "firefox"
}
}
},
"devDependencies": {
"autoprefixer": "^8.1.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"better-npm-run": "^0.1.0",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"postcss-loader": "^2.1.3",
"pug-html-loader": "^1.1.5",
"style-loader": "^0.20.3",
"webpack": "^3.11.0"
},
"dependencies": {
"unsplash-js": "^4.8.0",
"whatwg-fetch": "^2.0.4"
}
}