forked from IntellectionStudio/intellection.kz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.54 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.54 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
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
121
122
123
124
125
126
{
"name": "intellection",
"version": "0.0.0",
"private": true,
"homepage": "https://intellection.netlify.com",
"repository": "IntellectionStudio/intellection.kz",
"license": "GPL-3.0",
"scripts": {
"lint:js": "eslint --fix .",
"lint:css": "stylelint \"src/**/*.css\"",
"lint": "npm-run-all --parallel lint:*",
"test": "npm run lint",
"commitmsg": "validate-commit-msg",
"precommit": "lint-staged",
"prepush": "npm test",
"start": "phenomic start",
"build": "phenomic build",
"production": "http-server dist"
},
"phenomic": {
"CNAME": false,
"devPort": 3000,
"source": "content",
"assets": "assets"
},
"config": {
"validate-commit-msg": {
"maxSubjectLength": 72,
"types": "conventional-commit-types"
}
},
"lint-staged": {
"{src,scripts}/**/*.js": [
"eslint --fix",
"git add"
]
},
"babel": {
"extends": "./babelrc"
},
"dependencies": {
"autotrack": "^2.4.1",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.5",
"eslint-plugin-jsx-a11y": "^6.0.2",
"libphonenumber-js": "^0.4.31",
"lodash.throttle": "^4.1.1",
"normalize.css": "^7.0.0",
"phenomic": "^0.21.2",
"prop-types": "^15.5.10",
"ramda": "^0.24.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-favicon": "^0.0.9",
"react-helmet": "^5.2.0",
"react-image-webp": "^0.2.0",
"react-measure": "1.4.7",
"react-modal": "^2.3.2",
"react-modal-video": "^1.0.7",
"react-player": "^0.24.5",
"react-popup": "^0.8.0",
"react-responsive-image": "^3.4.2",
"react-router": "3.0.0",
"react-simple-chatbot": "0.2.6",
"react-slick": "^0.15.4",
"react-svg-inline": "^2.0.0",
"react-topbar-progress-indicator": "^1.0.0",
"recompact": "^3.1.0",
"redux": "^3.7.2",
"rss-parser": "^2.10.6",
"styled-components": "^2.1.2",
"tachyons": "^4.8.1",
"warning": "^3.0.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-inline-import": "^2.0.6",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-ramda": "^1.4.3",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.7",
"eslint": "^4.7.1",
"eslint-config-anvilabs": "^12.0.1",
"eslint-import-resolver-babel-module": "^3.0.0",
"eslint-loader": "^1.9.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"front-matter": "^2.2.0",
"history": "^2.0.0",
"http-server": "^0.10.0",
"husky": "^0.14.3",
"imagemin-mozjpeg": "^6.0.0",
"imagemin-webpack-plugin": "^1.5.2",
"jimp": "^0.2.28",
"lint-staged": "^4.2.1",
"node-sass": "^4.5.3",
"npm-run-all": "^4.1.1",
"postcss-browser-reporter": "^0.5.0",
"postcss-cssnext": "^3.0.2",
"postcss-loader": "^2.0.6",
"postcss-reporter": "^5.0.0",
"prettier": "^1.7.0",
"prettier-eslint": "^8.1.0",
"raw-loader": "^0.5.1",
"react-hot-loader": "^3.0.0-beta",
"react-redux": "^5.0.6",
"responsive-loader": "^1.1.0",
"sass-loader": "^6.0.6",
"srcset-loader": "^2.1.0",
"style-loader": "^0.18.2",
"stylelint": "^8.1.1",
"stylelint-config-standard": "^17.0.0",
"validate-commit-msg": "^2.14.0",
"webpack": "^3.6.0",
"yamljs": "^0.3.0"
}
}