This repository has been archived by the owner on Apr 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
{
"name": "epics-web-proto",
"version": "0.0.1",
"description": "Read data from EPICS, using React-Redux",
"main": "start_electron.js",
"scripts": {
"compile": "webpack",
"start": "node start_node.js",
"test": "jest",
"test:verbose": "jest --verbose",
"test:watch": "jest --watchAll",
"test:watchverbose": "jest --watchAll --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/willrogers/EpicsWebProto.git"
},
"keywords": [],
"author": "Benedict Wagnall",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"canvas": "^2.4.1",
"css-loader": "^2.1.1",
"electron": "^4.1.4",
"express": "^4.16.4",
"prop-types": "latest",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^6.0.1",
"redux": "^4.0.1",
"webpack": "^4.29.6",
"webpack-dev-middleware": "^3.6.1"
},
"devDependencies": {
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.7.1",
"jest-environment-jsdom-fourteen": "^0.1.0",
"webpack-cli": "^3.3.0"
}
}