-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
116 lines (116 loc) · 4.14 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "steadylearner_website",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"begin": "code ./ && webpack-dev-server --mode=development --open",
"start": "webpack-dev-server --mode=development --open",
"start:cypress": "webpack-dev-server --mode=development --env.cypress --open",
"clean": "rimraf dist",
"dev": "webpack --mode=development",
"build": "yarn clean && webpack --mode=production --sourcemap=false",
"build:static": "STATIC=true yarn build --output-public-path='/static/'",
"build:aws": "yarn build --env.aws",
"build:github": "yarn build && git subtree push --prefix dist origin gh-pages",
"fix": "eslint --ignore-path .gitignore . --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:memory": "jest --env=node --logHeapUsage",
"test:u": "jest --updateSnapshot",
"cypress": "cypress",
"cypress:open": "cypress open",
"cypress:all": "cypress run",
"cypress:dev": "start-server-and-test start:cypress http://localhost:8080 cypress:all"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-decorators": "^7.1.6",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0-beta.54",
"@babel/plugin-proposal-optional-chaining": "^7.0.0-beta.54",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0-beta.54",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0-beta.54",
"@hint/hint-x-content-type-options": "^3.1.2",
"@testing-library/react": "^9.3.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.4.2",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-styled-components": "^1.5.1",
"cypress": "^3.6.0",
"dynamic-cdn-webpack-plugin": "^4.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-hooks": "^1.4.0",
"jest": "^24.9.0",
"module-to-cdn": "^3.1.2",
"regenerator-runtime": "^0.13.1",
"source-map-loader": "^0.2.3",
"start-server-and-test": "^1.10.6",
"terser-webpack-plugin": "^1.2.3",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-filter-warnings-plugin": "^1.2.1"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.0.0-beta.49",
"autoprefixer": "^9.1.2",
"babel-loader": "^8.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"clean-webpack-plugin": "^1.0.0",
"connect-multiparty": "^2.1.1",
"csp-webpack-plugin": "^2.0.2",
"css-loader": "^2.1.0",
"file-loader": "^3.0.1",
"formik": "^1.0.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"prop-passer": "^1.1.1-3",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-hotkeys-hook": "^1.5.3",
"react-router-dom": "^4.3.1",
"react-spring": "^8.0.27",
"react-text-mask": "^5.4.3",
"recompose": "^0.30.0",
"sass-loader": "^7.0.1",
"style-loader": "^0.23.1",
"styled-components": "^4.1.2",
"url-loader": "^1.1.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.0.8",
"webpack-dev-middleware": "^3.1.3",
"webpack-dev-server": "^3.1.3",
"yup": "^0.26.6"
},
"engines": {
"node": "12.3.1"
},
"jest": {
"verbose": true,
"automock": true,
"setupTestFrameworkScriptFile": "<rootDir>/src/__tests__/setup/setupEnzyme.js",
"testPathIgnorePatterns": [
"<rootDir>/src/__tests__/setup/"
]
}
}