This repository has been archived by the owner on Jun 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.53 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
{
"name": "openlattice.com",
"version": "0.0.0",
"homepage": "https://github.com/openlattice/openlattice.com",
"description": "openlattice.com",
"author": {
"name": "OpenLattice, Inc.",
"email": "[email protected]",
"url": "https://openlattice.com"
},
"contributors": [
{
"name": "Hristo Oskov",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/openlattice/openlattice.com.git"
},
"bugs": {
"url": "https://github.com/openlattice/openlattice.com/issues"
},
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "~7.15.4",
"@fortawesome/fontawesome-svg-core": "~1.2.0",
"@fortawesome/free-brands-svg-icons": "~5.15.0",
"@fortawesome/pro-light-svg-icons": "~5.15.0",
"@fortawesome/pro-regular-svg-icons": "~5.15.0",
"@fortawesome/pro-solid-svg-icons": "~5.15.0",
"@fortawesome/react-fontawesome": "~0.1.0",
"@material-ui/core": "~4.12.0",
"@material-ui/styles": "~4.11.4",
"@redux-saga/core": "~1.1.3",
"connected-react-router": "~6.9.0",
"history": "~4.10.0",
"immutable": "4.0.0-rc.10",
"lattice-ui-kit": "~0.46.1",
"lodash": "~4.17.21",
"loglevel": "~1.7.0",
"polished": "~4.1.2",
"react": "~16.14.0",
"react-dom": "~16.14.0",
"react-redux": "~7.2.0",
"react-router": "~5.2.0",
"react-router-dom": "~5.3.0",
"redux": "~4.1.0",
"redux-immutable": "4.0.0",
"styled-components": "~5.3.0"
},
"devDependencies": {
"@babel/cli": "~7.15.7",
"@babel/core": "~7.15.5",
"@babel/plugin-proposal-class-properties": "~7.14.5",
"@babel/plugin-proposal-object-rest-spread": "~7.15.6",
"@babel/plugin-transform-runtime": "~7.15.0",
"@babel/preset-env": "~7.15.6",
"@babel/preset-flow": "~7.14.5",
"@babel/preset-react": "~7.14.5",
"babel-eslint": "~10.1.0",
"babel-jest": "~27.2.0",
"babel-loader": "~8.2.2",
"babel-plugin-styled-components": "~1.13.1",
"babel-plugin-transform-imports": "~2.0.0",
"core-js": "~3.18.0",
"enzyme": "~3.11.0",
"enzyme-adapter-react-16": "~1.15.0",
"eslint": "~7.32.0",
"eslint-config-airbnb": "~18.2.0",
"eslint-import-resolver-webpack": "~0.13.0",
"eslint-plugin-flowtype": "~6.1.0",
"eslint-plugin-import": "~2.24.0",
"eslint-plugin-jest": "~24.5.0",
"eslint-plugin-jsx-a11y": "~6.4.1",
"eslint-plugin-react": "~7.26.0",
"eslint-plugin-react-hooks": "~4.2.0",
"flow-bin": "~0.138.0",
"html-webpack-plugin": "~5.3.2",
"import-sort-style-openlattice": "~0.1.0",
"jest": "~27.2.0",
"jest-styled-components": "~7.0.5",
"npm-run-all": "~4.1.0",
"rimraf": "~3.0.0",
"stylelint": "~13.13.0",
"stylelint-config-standard": "~22.0.0",
"stylelint-config-styled-components": "~0.1.1",
"stylelint-processor-styled-components": "~1.10.0",
"webpack": "~5.55.0",
"webpack-cli": "~4.8.0",
"webpack-dev-server": "~4.3.0",
"webpack-hot-middleware": "~2.25.0"
},
"scripts": {
"app": "webpack serve --config config/webpack/webpack.config.app.js --env development",
"build:prod": "webpack --config config/webpack/webpack.config.app.js --env production",
"clean": "rimraf build/*",
"flow": "flow",
"lint": "npm-run-all lint:css lint:js",
"lint:css": "stylelint './src/**/*.js'",
"lint:js": "eslint --config .eslintrc src",
"test": "jest --maxWorkers=4 --config config/jest/jest.config.js",
"test:watch": "jest --config config/jest/jest.config.js --watch --coverage=false"
}
}