-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
78 lines (78 loc) · 2.32 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
{
"name": "frontendbookshelf",
"version": "1.0.0",
"main": "",
"repository": "https://github.com/andrew--r/frontendbookshelf",
"author": "Andrew Romanov <me@andrew-r.ru>",
"license": "MIT",
"engines": {
"node": "^8.9.4",
"npm": "^5.8.0"
},
"scripts": {
"generate": "plop",
"clear": "rm -rf ./build",
"prestart": "npm run clear",
"start": "gulp watch",
"format:styles": "gulp format:styles",
"lint": "npm run lint:styles && npm run lint:scripts",
"prelint:styles": "npm run format:styles",
"lint:styles": "stylelint source/**/*.css",
"lint:scripts": "eslint {gulp,source}",
"test": "jest",
"prebuild": "npm run clear",
"build": "npm run build:production",
"prebuild:production": "npm run clear",
"build:production": "cross-env NODE_ENV=production gulp build",
"prebuild:development": "npm run clear",
"build:development": "cross-env NODE_ENV=development gulp build",
"qa": "npm run lint && npm run test",
"precommit": "npm run qa"
},
"dependencies": {
"frontendbookshelf-data": "1.1.0"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015": "^6.18.0",
"bemto.pug": "^2.1.0",
"browser-sync": "^2.18.6",
"cross-env": "5.1.4",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.7.0",
"glob": "^7.1.1",
"gulp": "^3.9.1",
"gulp-data": "^1.2.1",
"gulp-imagemin": "^3.1.1",
"gulp-plumber": "^1.1.0",
"gulp-postcss": "^6.2.0",
"gulp-pug": "^3.2.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.8",
"husky": "0.14.3",
"jest": "22.4.3",
"jimp": "^0.2.27",
"plop": "^1.7.3",
"postcss-cssnext": "^2.9.0",
"postcss-csso": "^2.0.0",
"postcss-easy-import": "^1.0.1",
"postcss-flexbugs-fixes": "^3.0.0",
"postcss-reporter": "^3.0.0",
"postcss-sorting": "^2.0.1",
"require-dir": "^0.3.1",
"stylelint": "^7.7.1",
"through2": "^2.0.3",
"webpack-stream": "^3.2.0"
},
"browserslist": [
"last 2 versions"
]
}