-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.68 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
{
"name": "caliper-example-app",
"version": "0.1.0",
"description": "example Caliper Sinatra app",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --content-base lib/app/views --hot --inline",
"build": "webpack --config webpack.prod.config.js",
"lint": "eslint src/**",
"lint:watch": "esw -w src/**",
"test": "mocha ./test/**/*.spec.js --require ignore-styles"
},
"author": "",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@material-ui/core": "^4.0.0-beta.2",
"@material-ui/icons": "^3.0.2",
"@reach/router": "^1.2.1",
"alt": "^0.18.6",
"css-loader": "^0.28.0",
"enzyme": "^2.9.1",
"expect": "^1.20.2",
"express": "^4.16.4",
"js-yaml": "^3.13.1",
"mocha": "^6.1.4",
"node-sass": "^4.12.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"tar": "^4.4.8",
"webpack": "^4.30.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"eslint": "^5.16.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"eslint-watch": "^5.1.2",
"html-webpack-plugin": "^3.2.0",
"ignore-styles": "^5.0.1",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^16.8.6",
"script-ext-html-webpack-plugin": "^2.1.3",
"webpack-cli": "^3.3.2",
"webpack-dev-middleware": "^3.6.2",
"webpack-dev-server": "^3.3.1",
"webpack-hot-middleware": "^2.24.4"
}
}