This repository has been archived by the owner on Jun 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·76 lines (76 loc) · 2.4 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
{
"name": "mercury",
"version": "1.0.0",
"license": "unlicensed",
"main": "index.php",
"engines": {
"node": "8",
"npm": "6"
},
"scripts": {
"dev": "NODE_ENV=development webpack-dev-server --config client/config/webpack.config.js --mode development --env.certPath=broadway/config/nginx-config",
"build": "webpack --config client/config/webpack.config.js --mode production --env.certPath=broadway/config/nginx-config",
"lint": "eslint ./client",
"scaffold": "scaffold dir ./scaffold --theme=./",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@wordpress/dom-ready": "^2.1.0",
"classnames": "^2.2.5",
"formik": "^1.5.1",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"nanobus": "^4.4.0",
"papaparse": "^4.6.1",
"prop-types": "^15.6.2",
"pubsub-js": "^1.7.0",
"react": "^16.9.0",
"react-dates": "^20.2.0",
"react-dom": "^16.9.0",
"react-hot-loader": "^4.8.2",
"react-pose": "^4.0.8",
"react-quill": "^1.3.3",
"react-tabs": "^3.0.0",
"react-with-direction": "^1.3.0",
"styled-components": "^4.2.0",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-styled-components": "^1.10.0",
"css-loader": "0.28.1",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"node-sass": "^4.11.0",
"postcss-loader": "2.0.5",
"sass-loader": "6.0.6",
"style-loader": "0.13.1",
"stylelint": "^9.10.1",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-custom-processor-loader": "^0.6.0",
"stylelint-order": "^2.1.0",
"stylelint-processor-styled-components": "^1.6.0",
"svg-react-loader": "^0.4.6",
"webpack": "^4.10.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.4"
}
}