-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.52 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
{
"name": "manifold-marketing",
"version": "1.0.0",
"description": "October CMS website for Manifold Marketing Foundation",
"main": "manifest.js",
"repository": "https://github.com/castiron/manifold-marketing",
"author": "Cast Iron Coding",
"license": "MIT",
"scripts": {
"clean": "rimraf www/assets",
"dev": "NODE_ENV=development WEBPACK_DEV_SERVER=true webpack-dev-server --config webpack/dev.conf.js",
"watch": "NODE_ENV=development webpack --watch --bail --config webpack/prod.conf.js",
"build": "NODE_ENV=production webpack --bail --config webpack/prod.conf.js",
"clean-build": "yarn clean && yarn build",
"fix:js": "prettier --write \"{themes,webpack}/**/*.js\"",
"fix:styles": "stylelint --config .stylelintrc.js themes/**/*.scss --syntax scss --fix",
"lint:js": "eslint -c .eslintrc.js themes/**/*.js",
"lint:styles": "stylelint --config .stylelintrc.js themes/**/*.scss --syntax scss"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"dependencies": {
"@vimeo/player": "^2.2.1",
"autoprefixer": "^8.3.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-core": "^6.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.4",
"donezo": "castiron/donezo",
"eslint": "^4.3.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^2.0.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"lint-staged": "^4.0.3",
"lodash": "^4.17.4",
"node-sass": "^4.5.3",
"postcss-custom-properties": "^8.0.6",
"postcss-loader": "^2.1.4",
"postcss-scss": "^1.0.2",
"prettier": "^1.5.3",
"rellax": "^1.2.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"stylelint": "^9.2.1",
"stylelint-config-recess-order": "^2.0.0",
"stylelint-scss": "^3.1.0",
"uglify-js": "^2.8.29",
"uglify-loader": "^2.0.0",
"webpack": "^4.6.0",
"webpack-assets-manifest": "^3.0.1",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.3",
"webpack-merge": "^4.1.0",
"webpack-php-manifest": "^0.0.4"
}
}