-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
120 lines (120 loc) · 3.9 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "instaweb-landing",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"prettier": "prettier 'src/**/**/*.?(js|jsx)' --write",
"start": "cross-env NODE_ENV=development node scripts/start",
"build": "cross-env NODE_ENV=production webpack --progress --colors",
"analyze": "cross-env NODE_ENV=production ANALYZE=1 webpack --progress --colors",
"deploy": "cross-env NODE_ENV=production BUILD=pages node scripts/deploy",
"clean:git": "node scripts/clean-git",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "eslint src --ext .js --ext .jsx --cache || true",
"lint:scss": "stylelint 'src/**/*.scss' --cache --fix || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/instagrambot/landing.git"
},
"author": "",
"license": "",
"bugs": {
"url": "https://github.com/instagrambot/landing/issues"
},
"homepage": "https://instagrambot.github.io/landing",
"dependencies": {
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.6",
"enzyme": "^3.4.4",
"enzyme-adapter-react-16": "^1.2.0",
"enzyme-to-json": "^3.3.4",
"lax.js": "^1.1.0",
"prop-types": "^15.6.2",
"ramda": "^0.25.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-helmet": "^5.2.0",
"react-hot-loader": "^4.3.4",
"react-icons": "^3.0.5",
"react-mailchimp-subscribe": "^2.1.0",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-router-prop-types": "1.0.4",
"react-yandex-metrika": "^2.5.1",
"redux": "^4.0.0",
"redux-axios-middleware": "^4.0.0",
"redux-thunk": "^2.3.0",
"sweetalert-react": "^0.4.11",
"sweetalert2": "^8.6.0",
"sweetalert2-react-content": "^1.1.0",
"webpack-bundle-analyzer": "^2.13.1"
},
"devDependencies": {
"autoprefixer": "^9.1.1",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^24.5.0",
"babel-loader": "^7.1.5",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-ramda": "^1.6.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"bluebird": "^3.5.1",
"braces": "^2.3.2",
"browser-sync": "^2.24.6",
"browser-sync-webpack-plugin": "^2.2.2",
"chalk": "^2.4.1",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"debug": "^4.1.1",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.21.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"favicons-webpack-plugin": "0.0.9",
"file-loader": "^1.1.11",
"gh-pages": "^1.2.0",
"git-repo-name": "^0.6.0",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"ignore-styles": "^5.0.1",
"jest": "^24.5.0",
"lodash": "^4.17.11",
"lodash-webpack-plugin": "^0.11.5",
"node-sass": "^4.9.3",
"open": "^6.0.0",
"open-browser-webpack-plugin": "^0.0.5",
"postcss": "^7.0.2",
"postcss-loader": "^3.0.0",
"prettier": "^1.14.2",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.22.1",
"stylelint": "^9.4.0",
"stylelint-config-css-modules": "^1.3.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^3.3.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"yesno": "0.0.1"
}
}