-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.96 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
{
"name": "polyphemus",
"version": "1.0.0",
"description": "Polyphemus manages work for Etna applications. It is based on the [etna](https://github.com/mountetna/etna) gem.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mountetna/polyphemus.git"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.13.0",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"ajv": "^8.6.2",
"codemirror": "^5.62.2",
"color": "^3.1.3",
"css-loader": "^3.6.0",
"diff": "^5.0.0",
"downloadjs": "^1.4.7",
"etna-js": "file:../etna/packages/etna-js",
"isomorphic-fetch": "^3.0.0",
"js-cookie": "^2.2.0",
"json-source-map": "^0.6.1",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-codemirror2": "^7.2.1",
"react-dom": "^16.13.1",
"react-modal": "^3.12.1",
"react-redux": "^7.2.0",
"react-svg": "^14.0.3",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"reselect": "^3.0.1",
"style-loader": "^1.2.1",
"typescript": "^4.2.3",
"webworkify-webpack": "^2.1.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^11.2.7",
"@types/codemirror": "^5.60.2",
"@types/diff": "^5.0.1",
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.169",
"@types/react-dom": "^17.0.5",
"@types/react-test-renderer": "^17.0.1",
"@types/redux-mock-store": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.3.14",
"css-loader": "^0.28.11",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^4.19.0",
"eslint-plugin-react": "^6.9.0",
"eslint-plugin-react-hooks": "^4.2.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.1.0",
"msw": "^0.28.2",
"nock": "^12.0.3",
"node-fetch": "^2.6.0",
"node-sass": "^4.13.0",
"raf": "^3.4.1",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.4",
"sass-loader": "^6.0.6",
"service-worker-loader": "^4.0.2",
"webpack": "^3.12.0"
},
"scripts": {
"test": "tsc && jest && webpack",
"build": "./node_modules/webpack/bin/webpack.js --env.NODE_ENV=production",
"build-dev": "./node_modules/webpack/bin/webpack.js --env.NODE_ENV=development",
"webpack": "./node_modules/webpack/bin/webpack.js --env.NODE_ENV=production --watch",
"webpack-dev": "./node_modules/webpack/bin/webpack.js --env.NODE_ENV=development --watch"
}
}