This repository has been archived by the owner on Sep 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.28 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
{
"name": "box-documentation-feedback-widget",
"version": "1.0.0",
"description": "A feedback widget for on the Box dev docs",
"main": "webpack.prod.js",
"scripts": {
"clean": "rm -f dist/*.js dist/*.gz",
"build": "webpack --config webpack.prod.js",
"lint:js": "yarn eslint src/**/*.js tests/**/*.js",
"lint:css": "yarn stylelint src/**/*.scss",
"lint": "yarn lint:js; yarn lint:css",
"prebuild": "yarn clean; yarn lint:js; yarn lint:css",
"start": "webpack-dev-server --config webpack.dev.js",
"test:watch": "yarn test --watch",
"test": "jest",
"pretest": "yarn lint"
},
"author": {
"name": "Cristiano Betta",
"email": "[email protected]",
"url": "https://developer.box.com"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.8.0",
"babel-loader": "^8.0.4",
"babel-plugin-transform-react-jsx": "^6.24.1",
"compression-webpack-plugin": "^2.0.0",
"css-loader": "2.1.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.6.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-jest": "22.6.4",
"eslint-plugin-react": "^7.11.1",
"jest": "24.8.0",
"jest-css-modules": "2.0.0",
"node-sass": "^4.9.3",
"postcss-loader": "^3.0.0",
"promise-polyfill": "^8.1.0",
"regenerator-runtime": "0.13.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "10.0.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-webpack-plugin": "^0.10.5",
"webpack": "^4.20.2",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"@material-ui/core": "^3.2.2",
"@material-ui/icons": "^3.0.1",
"cookies-js": "^1.2.3",
"linkstate": "^1.1.1",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"whatwg-fetch": "^3.0.0"
},
"sideEffects": false,
"jest": {
"moduleNameMapper": {
"\\.(scss)$": "<rootDir>/node_modules/jest-css-modules"
}
}
}