-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.77 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.77 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
{
"name": "edison2020",
"version": "0.1.0",
"description": "edison2020",
"author": "edison orgas",
"private": true,
"license": "UNLICENSED",
"main": "index.js",
"config": {
"port": "9090",
"theme": "akademi"
},
"scripts": {
"webpack": "NODE_ENV=development webpack",
"build": "npm run clean && NODE_ENV=production webpack",
"dev": "set-bash-title \"⚡️ $npm_package_name\"; npm run checkconfig && mkdir -p build && NODE_ENV=development concurrently --kill-others 'php -c php.ini -S 0.0.0.0:$npm_package_config_port -t build/' 'webpack --watch --progress'",
"dbdump": "node scripts/dbdump.js",
"dbrestore": "node scripts/dbrestore.js",
"clean": "npm run save-uploads && npm run save-acf-json && rm -Rf build && npm run postinstall",
"checkconfig": "node scripts/checkconfig.js",
"postinstall": "composer install && node scripts/wp-install.js",
"pngquant": "find src/assets/img -name '*.png' -type f -exec npx pngquant {} -f --skip-if-larger --ext '.png' --verbose \\;",
"mozjpeg": "find src/assets/img -name '*.jpg' -type f -exec mozjpeg -outfile {}.mozjpeg {} \\; -exec mv {}.mozjpeg {} \\;",
"svgo": "find src/assets/img -name '*.svg' -type f -exec npx svgo {} \\;",
"images": "node scripts/resizeimage.js --all && npm run pngquant && npm run mozjpeg && npm run svgo",
"fix-permissions": "chmod -R ugo+r *",
"save-acf-json": "ls"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"babel-plugin-root-import": "^6.1.0",
"concurrently": "^4.0.1",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"eslint": "^5.6.0",
"eslint-config-google": "^0.10.0",
"eslint-plugin-react": "^7.11.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"json": "^9.0.6",
"ncp": "^2.0.0",
"node-bash-title": "0.0.2",
"node-sass": "^4.9.3",
"node-wget": "^0.4.3",
"pngquant": "^1.3.0",
"readline-sync": "^1.4.9",
"replace": "^1.0.0",
"sass-lint": "^1.12.1",
"sass-loader": "^7.1.0",
"shared-git-hooks": "^1.2.1",
"style-loader": "^0.23.0",
"svgo": "^1.1.1",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0"
},
"akademiId": "brilliant-minds-web",
"dependencies": {
"classnames": "^2.2.6",
"intersection-observer": "^0.5.1",
"moment": "^2.23.0",
"react": "^16.8.6",
"react-autobind": "^1.0.6",
"react-dom": "^16.8.6",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-visibility-sensor": "^4.1.1",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"smoothscroll-polyfill": "^0.4.3"
}
}