-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.35 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.35 KB
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": "plugins-with-typescript-mobx-and-react",
"version": "1.0.0",
"description": "Plugins based solution for decoupled FE with TypeScript, React, MobX.",
"main": "index.html",
"scripts": {
"start": "http-server -p 3000",
"test": "jest --bail --config ./.configs/jest.config.js",
"build:debug": "webpack --config ./.configs/webpack.debug.js",
"build:release": "webpack --config ./.configs/webpack.release.js",
"build:debug-w": "webpack --config ./.configs/webpack.debug.js -w",
"test:coverage": "jest --coverage --bail --config ./.configs/jest.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mchaov/plugins-with-typescript-mobx-and-react.git"
},
"author": "Martin Chaov",
"license": "MIT",
"devDependencies": {
"babel-core": "6.26.3",
"babel-jest": "23.6.0",
"@types/enzyme": "3.9.1",
"@types/jest": "23.3.13",
"@types/jsdom": "12.2.3",
"@types/node": "11.13.7",
"@types/react": "16.8.14",
"@types/react-dom": "16.8.4",
"@types/react-transition-group": "2.9.0",
"babel-preset-env": "1.7.0",
"cache-loader": "3.0.0",
"copy-webpack-plugin": "5.0.2",
"css-loader": "2.1.1",
"http-server": "0.11.1",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.12.1",
"enzyme-adapter-utils": "1.11.0",
"enzyme-to-json": "3.3.5",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "3.0.1",
"fork-ts-checker-webpack-plugin": "1.2.0",
"fs-extra": "7.0.1",
"image-webpack-loader": "4.6.0",
"jest": "23.6.0",
"jest-cli": "23.6.0",
"promise-polyfill": "8.1.0",
"proxy-polyfill": "0.3.0",
"raf": "3.4.1",
"raw-loader": "2.0.0",
"react-test-renderer": "16.8.6",
"thread-loader": "2.1.2",
"ts-jest": "23.10.5",
"ts-loader": "5.4.3",
"ts-node": "8.1.0",
"tslib": "1.9.3",
"tslint": "5.16.0",
"tslint-loader": "3.5.4",
"typescript": "3.4.5",
"webpack": "4.30.0",
"webpack-cli": "3.3.1",
"webpack-bundle-analyzer": "3.3.2",
"webpack-raw-bundler": "1.3.6"
},
"dependencies": {
"vue": "2.6.10",
"eventemitter3": "3.1.0",
"mobx": "5.9.4",
"mobx-react": "5.4.3",
"mobx-utils": "5.4.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-responsive-carousel": "^3.1.49"
}
}