forked from BeAPI/beapi-frontend-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·80 lines (80 loc) · 2.78 KB
/
package.json
File metadata and controls
executable file
·80 lines (80 loc) · 2.78 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
{
"name": "beapi-frontend-framework",
"version": "3.0.12",
"author": "BeAPI",
"repository": {
"type": "git",
"url": "https://github.com/BeAPI/beapi-frontend-framework"
},
"scripts": {
"composerjs": "cd composerjs && npm install && node app.js",
"favicon": "node tasks/favicon.js && node tasks/favicon.js --appicon",
"icons": "node tasks/svg-sprite.js",
"image": "node tasks/image-sizes.js",
"bump": "node tasks/style-version.js",
"start": "concurrently -k -n \"Webpack,PHP Server\" -p \"[{name}]\" -c \"green, blue\" \"NODE_ENV=dev webpack --watch --config config/server.js\" \"php -S localhost:9090\"",
"watch": "NODE_ENV=dev webpack --watch --config config/webpack.dev.js",
"build:dev": "NODE_ENV=dev webpack --config config/webpack.dev.js && npm run icons && npm run favicon",
"build:prod": "webpack --config config/webpack.prod.js && npm run icons && npm run favicon",
"build": "webpack --config config/webpack.prod.js && npm run build:dev"
},
"license": "GPL-2.0",
"devDependencies": {
"@babel/polyfill": "^7.0.0",
"axe-core": "^3.1.2",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"browser-sync": "^2.26.3",
"browser-sync-webpack-plugin": "^2.2.2",
"cheerio": "^1.0.0-rc.2",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^0.28.4",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.10.0",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"favicons": "^5.3.0",
"file-loader": "^0.11.2",
"fs": "0.0.1-security",
"image-webpack-loader": "^4.5.0",
"json2csv": "^4.2.1",
"node-sass": "^4.9.4",
"optimize-css-assets-webpack-plugin": "^3.0.0",
"ora": "^2.1.0",
"penthouse": "^1.10.1",
"postcss-loader": "^1.0.0",
"prettier-eslint": "^8.8.1",
"resolve-url-loader": "^2.3.1",
"sass-loader": "^6.0.6",
"shelljs": "^0.8.1",
"style-loader": "^0.18.2",
"superfish": "^1.7.10",
"svgo": "^1.1.1",
"svgstore": "^2.0.2",
"through2": "^2.0.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^1.1.2",
"webpack": "^3.3.0",
"webpack-manifest-plugin": "^1.3.1"
},
"dependencies": {
"concurrently": "^4.0.1",
"lazysizes": "^4.1.4",
"normalize-scss": "^7.0.1",
"object-fit-images": "^3.2.4",
"picturefill": "3.0.2",
"susy": "^2.2.14"
}
}