forked from jhlagado/wicked-tec1
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.04 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
{
"name": "wicked-tec1",
"version": "1.0.0",
"description": "An emulation of the TEC-1",
"main": "index.js",
"scripts": {
"lint": "eslint src/**/*.ts* --fix",
"start": "parcel ./src/index.html --port 1334",
"build": "parcel build ./src/index.html --public-url /wicked-tec1/",
"test": "npm run lint && jest --coverage",
"test-dev": "jest"
},
"keywords": [
"parcel",
"react"
],
"author": "John Hardy <“[email protected]”> (https://www.lagado.com)",
"license": "MIT",
"dependencies": {
"@reach/router": "^1.3.3",
"lit-html": "1.2.1",
"nrf-intel-hex": "1.3.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-transition-group": "^4.2.2",
"styled-components": "^4.4.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@types/fetch-mock": "^7.3.2",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.35",
"@types/reach__router": "^1.3.4",
"@types/react": "^16.9.33",
"@types/react-dom": "^16.9.6",
"@types/react-redux": "^7.1.7",
"@types/react-transition-group": "^4.2.4",
"@types/redux-actions": "^2.6.1",
"@types/redux-api-middleware": "^3.0.7",
"@types/redux-mock-store": "^1.0.2",
"@types/styled-components": "^4.4.3",
"@types/webpack-env": "^1.15.1",
"@typescript-eslint/eslint-plugin": "2.27.0",
"@typescript-eslint/parser": "2.27.0",
"babel-core": "6.26.3",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"fetch-mock": "^7.7.3",
"jest": "^24.9.0",
"node-fetch": "^2.6.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-html-externals": "^0.1.2",
"stubby": "^4.1.1",
"ts-jest": "^24.3.0",
"typescript": "3.8.3"
},
"externals": {
"/config/**/*": false
}
}