Newer
Older
{
"name": "openfing-web",
"version": "1.0.0",
"scripts": {
"start": "webpack-dev-server --env development --port 3000",
"build": "webpack --env production",
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
"ts-check": "tsc --noEmit",
"lint:code": "eslint '*/**/*.{js,ts,tsx}'",
"lint:code:fix": "npm run lint:code -- --fix",
"storybook": "cross-env NODE_PATH=src start-storybook -p 6006 --ci",
"build-storybook": "build-storybook",
"analyze": "npm run build && webpack --profile --json > dist/stats.json && webpack-bundle-analyzer dist/stats.json",
"clean": "rmdir /s /q node_modules && del package-lock.json && npm i"
},
"repository": {
"type": "git",
"url": "https://gitlab.fing.edu.uy/santiago.gonzalez.pereyra/openfing-web.git"
},
"author": "Santiago Gonzalez",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.4.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-proposal-decorators": "7.4.4",
"@babel/plugin-proposal-object-rest-spread": "7.4.4",
"@babel/plugin-transform-runtime": "7.4.4",
"@babel/preset-env": "7.4.5",
"@babel/preset-react": "7.0.0",
"@storybook/addon-actions": "5.1.9",
"@storybook/addon-knobs": "^5.1.9",
"@storybook/addon-links": "5.1.9",
"@storybook/addons": "5.1.9",
"@storybook/react": "5.1.9",
"@types/history": "4.7.2",
"@types/html-webpack-plugin": "^3.2.1",
"@types/react": "16.8.22",
"@types/react-dom": "16.8.4",
"@types/react-router-dom": "4.3.4",
"@types/storybook__addon-actions": "3.4.3",
"@types/storybook__addon-knobs": "^5.0.3",
"@types/storybook__react": "4.0.2",
"@types/styled-components": "4.1.16",
"@types/terser-webpack-plugin": "^1.2.1",
"@types/url-join": "4.0.0",
"@types/uuid": "^3.4.4",
"@types/webpack": "^4.4.35",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"babel-core": "6.26.3",
"babel-loader": "8.0.6",
"babel-plugin-styled-components": "1.10.4",
"babel-runtime": "6.26.0",
"clean-webpack-plugin": "3.0.0",
"core-js": "3.1.4",
"create-file-webpack": "1.0.2",
"cross-env": "5.2.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-jest": "^22.11.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"file-loader": "4.0.0",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"husky": "2.7.0",
"inline-environment-variables-webpack-plugin": "1.2.1",
"lint-staged": "^9.2.0",
"node": "^12.5.0",
"prettier": "1.18.2",
"terser-webpack-plugin": "1.3.0",
"ts-loader": "6.0.4",
"ts-node": "^8.3.0",
"tsconfig-paths-webpack-plugin": "3.2.0",
"typescript": "3.5.3",
"url-loader": "2.0.1",
"webpack": "4.35.0",
"webpack-bundle-analyzer": "3.3.2",
"webpack-cli": "3.3.5",
"webpack-dev-server": "3.7.2"
},
"dependencies": {
"@babel/polyfill": "7.4.4",
"fullscreen-api-polyfill": "1.1.2",
"graphql": "^14.4.2",
"history": "4.9.0",
"mobx": "5.10.1",
"mobx-react-lite": "1.4.1",
"moment": "2.24.0",
"openfing-core": "git+https://gitlab.fing.edu.uy/santiago.gonzalez.pereyra/openfing-core#v1.0.0-rc2",
"path-to-regexp": "3.0.0",
"polished": "3.4.1",
"query-string": "^5.1.1",
"react": "16.8.6",
"react-dom": "16.8.6",
"regenerator-runtime": "0.13.2",
"styled-components": "4.3.2",
"url-join": "4.0.0",
"uuid": "3.3.2"
}
}