-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.38 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "loki-chaos-extension",
"version": "1.0.0",
"license": "MIT",
"author": "Clarity Hub <[email protected]>",
"scripts": {
"lint": "eslint src",
"start": "NODE_ENV=development GENERATE_SOURCEMAP=true WATCH=true node scripts/start.js",
"build": "npm run build:clean && npm run build:webpack && npm run build:archive",
"build:clean": "rimraf ./build",
"build:webpack": "GENERATE_SOURCEMAP=false node scripts/build.js",
"build:archive": "bash ./scripts/archive.sh",
"test": "npm run test:once $@ --watch",
"test:once": "node scripts/test.js --env=jsdom",
"coverage": "COVER=true nyc --all npm run run test:once",
"coverage:report": "nyc report --reporter=text-summary"
},
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"src/**/*.test.js"
]
},
"dependencies": {
"@material-ui/core": "^3.0.1",
"@material-ui/icons": "^3.0.1",
"@material-ui/lab": "^3.0.0-alpha.14",
"autoprefixer": "7.1.2",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-loader": "7.1.1",
"babel-plugin-emotion": "^9.2.8",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-react-app": "^3.0.3",
"babel-runtime": "6.26.0",
"bugsnag-js": "^4.1.1",
"case-sensitive-paths-webpack-plugin": "2.1.1",
"chalk": "1.1.3",
"css-loader": "0.28.4",
"dotenv": "4.0.0",
"emotion": "^9.2.8",
"emotion-theming": "^9.2.6",
"eslint": "^4.13.0",
"eslint-config-react-app": "^2.0.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-flowtype": "^2.40.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-security": "^1.4.0",
"extract-text-webpack-plugin": "3.0.0",
"file-loader": "0.11.2",
"fs-extra": "3.0.1",
"html-webpack-plugin": "2.29.0",
"jest": "20.0.4",
"lodash.get": "^4.4.2",
"normalize.css": "^7.0.0",
"object-assign": "4.1.1",
"postcss-flexbugs-fixes": "3.2.0",
"postcss-loader": "2.0.6",
"promise": "8.0.1",
"pseudo-localization": "^1.2.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-emotion": "^9.2.8",
"rimraf": "^2.6.2",
"style-loader": "0.18.2",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "0.6.0",
"url-search-params": "^0.10.0",
"webpack": "3.5.1",
"webpack-dev-server": "2.8.2",
"webpack-merge": "^4.1.4",
"write-file-webpack-plugin": "4.2.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint-config-clarity-hub": "^1.0.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-config-standard-preact": "^1.1.6",
"eslint-import-resolver-webpack": "^0.8.4",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul-instrumenter-loader": "^3.0.0",
"jsdom": "^11.5.1",
"jsonwebtoken": "^8.1.1",
"mocha": "^4.1.0",
"mocha-webpack": "^1.0.1",
"react-dev-utils": "^5.0.2",
"redux-devtools": "^3.4.1",
"sinon": "^4.1.3",
"sinon-chai": "^2.14.0",
"webpack-node-externals": "^1.6.0"
}
}