This repository has been archived by the owner on Nov 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
67 lines (67 loc) · 2.05 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
67
{
"name": "instapy-gui",
"productName": "InstaPy GUI",
"version": "1.0.0",
"description": "GUI for InstaPy automation",
"main": "src/index.js",
"scripts": {
"test": "npm run lint",
"start": "webpack-dev-server --open --config webpack.dev.config.js",
"start:local": "ENV_FILE=.env npm run start",
"build": "webpack --config webpack.prod.config.js && cp public/*.png dist",
"lint": "eslint --config .eslintrc.yml --ext jsx --ext js src",
"black": "black -S services",
"lint:fix": "npm run lint -- --fix",
"dc:host": "docker-compose -f docker-compose.host.yml",
"dc:ssl": "docker-compose -f docker-compose.ssl.yml",
"dc:logs": "docker-compose -f docker-compose.logs.yml"
},
"author": "Felix Breuer",
"license": "GPL-3.0",
"repository": "github:breuerfelix/instapy-gui",
"dependencies": {
"array-move": "^1.0.0",
"classnames": "^2.2.6",
"core-js": "^3.1.4",
"history": "^4.9.0",
"jwt-decode": "^2.2.0",
"linkstate": "^1.1.1",
"preact": "^8.4.2",
"preact-compat": "^3.18.5",
"preact-markup": "^1.6.0",
"react-ga": "^2.5.7",
"react-router-dom": "^4.3.1",
"react-tagsinput": "^3.19.0",
"regenerator-runtime": "^0.13.3",
"slugify": "^1.3.4",
"unistore": "^3.4.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.4.5",
"@types/core-js": "^2.5.3",
"autoprefixer": "^9.6.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^1.0.1",
"css-loader": "^2.1.1",
"dotenv-webpack": "^1.7.0",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.13.0",
"file-loader": "^4.1.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"purgecss-webpack-plugin": "^1.5.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.5.1",
"webpack-merge": "^4.1.5"
}
}