-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.4 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.4 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "dgmedical-webapp-next",
"private": true,
"version": "0.0.1",
"description": "Next Version of DG Medical",
"main": "src/index.js",
"scripts": {
"clean": "rimraf dist",
"copy-files": "node node_modules/cpy src/favicon.ico dist",
"clean-and-copy": "yarn clean && mkdirp dist && yarn copy-files",
"test": "jest --config='config/jest/index.json'",
"test:e2e": "cypress run",
"start": "webpack-dev-server --progress --hot --inline --mode development --config=webpack/development.js",
"build": "yarn clean-and-copy && webpack --mode production --config=webpack/production.js",
"storybook": "yarn start-storybook -p 6006 -c './config/storybook'",
"build-storybook": "build-storybook -c './config/storybook'"
},
"author": "Datagenno Interactive Research",
"browserslist": [
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"@babel/cli": "^7.0.0-beta.46",
"@babel/core": "^7.0.0-beta.46",
"@babel/plugin-transform-runtime": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"@babel/preset-react": "^7.0.0-beta.46",
"@babel/preset-stage-0": "^7.0.0-beta.46",
"@babel/runtime": "^7.0.0-beta.46",
"@storybook/addon-actions": "4.0.0-alpha.4",
"@storybook/addon-links": "4.0.0-alpha.4",
"@storybook/addons": "4.0.0-alpha.4",
"@storybook/cli": "4.0.0-alpha.4",
"@storybook/react": "4.0.0-alpha.4",
"autoprefixer": "^8.4.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"babel-loader": "^8.0.0-beta",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-preset-react-optimize": "^1.0.1",
"caniuse-lite": "^1.0.30000832",
"cpy": "^6.0.0",
"css-loader": "^0.28.11",
"cypress": "^2.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-formatter-pretty": "^1.3.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-lodash": "^2.7.0",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"imports-loader": "^0.8.0",
"jest": "^22.4.3",
"jest-cli": "^22.4.3",
"jest-enzyme": "^6.0.0",
"jest-serializer-enzyme": "^1.0.0",
"lodash-webpack-plugin": "^0.11.5",
"mini-css-extract-plugin": "^0.4.0",
"mkdirp": "^0.5.1",
"offline-plugin": "^5.0.2",
"postcss-cssnext": "^3.1.0",
"postcss-flexbugs-fixes": "^3.3.1",
"postcss-loader": "^2.1.4",
"precss": "^3.1.2",
"react-hot-loader": "^4.1.2",
"rimraf": "^2.6.2",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"velocity-react": "^1.4.1",
"webpack": "4.6.0",
"webpack-bundle-analyzer": "git://github.com/juliobetta/webpack-bundle-analyzer#develop",
"webpack-chunk-hash": "^0.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3",
"webpack-merge": "^4.1.2",
"webpack-obfuscator": "^0.16.0",
"webpack-pwa-manifest": "^3.6.2"
},
"dependencies": {
"classnames": "^2.2.5",
"lodash": "^4.17.10",
"normalize.css": "^8.0.0",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-toolbox": "2.0.0-beta.12"
}
}