forked from theus/instantgram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.61 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": "instantgram",
"version": "3.0.0",
"description": "A bookmarklet for download photos in Instagram",
"main": "src/index.js",
"scripts": {
"dev": "concurrently \"npm run dev:webpack\" \"npm run dev:watch\"",
"start": "npm run dev",
"dev:watch": "nodemon --watch dist/main.js --exec \"npm run build:release:dev\"",
"dev:webpack": "webpack -w --env.dev",
"build:webpack": "webpack",
"build:pages": "node \"src\\_langs\\metalsmith.js\"",
"build:bookmarklet": "node scripts/bookmarkletify.js",
"build:bookmarklet:dev": "node scripts/bookmarkletify.js --dev",
"build:release": "npm run build:bookmarklet && npm run build:pages",
"build:release:dev": "npm run build:bookmarklet:dev && npm run build:pages",
"build": "npm run build:webpack && npm run build:release"
},
"homepage": "https://theus.github.io/instantgram/",
"repository": {
"type": "git",
"url": "(https://github.com/theus/instantgram"
},
"author": "Matheus Falcão",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"bookmarkletify": "^1.0.0",
"concurrently": "^3.6.1",
"css-loader": "^0.28.11",
"handlebars": "^4.0.5",
"html-loader": "^0.5.5",
"lodash-es": "^4.17.10",
"metalsmith": "^2.1.0",
"metalsmith-define": "^2.0.1",
"metalsmith-layouts": "^1.6.5",
"metalsmith-permalinks": "^0.5.0",
"nodemon": "^1.18.3",
"signale": "^1.2.1",
"style-loader": "^0.21.0",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"sweetalert": "^2.1.0"
}
}