-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.32 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
{
"name": "digital-circuit-visualiser",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "git://github.com/alexander-lloyd/fyp.git"
},
"author": "Alexander Lloyd",
"license": "UNLICENSED",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack",
"build:production": "cross-env NODE_ENV=production webpack",
"test": "jest",
"lint": "eslint src/**/*.ts src/**/*.tsx __mocks__/**/*.js types/**/*.ts *.js",
"clean": "rimraf build",
"development": "=================",
"build-parser": "node src/lib/parser/build-parser.js"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/react-fontawesome": "^0.1.8",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-redux": "^7.1.3",
"react-resize-aware": "^3.0.0",
"redux": "^4.0.5"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^10.0.0",
"@types/enzyme": "^3.10.3",
"@types/jest": "^25.1.2",
"@types/react": "^16.9.9",
"@types/react-dom": "^16.9.2",
"@types/react-redux": "^7.1.7",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"babel-jest": "^25.1.0",
"bulma": "^0.8.0",
"codecov": "^3.6.5",
"cross-env": "^7.0.0",
"csp-html-webpack-plugin": "^3.0.4",
"css-loader": "^3.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^6.5.1",
"eslint-plugin-jest": "^23.3.0",
"eslint-plugin-jsdoc": "^22.0.0",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.0.1",
"jest": "^25.1.0",
"jest-canvas-mock": "^2.1.2",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.0",
"pegjs": "^0.10.0",
"prettier": "^2.0.2",
"react-test-renderer": "^16.10.2",
"redux-devtools-extension": "^2.13.8",
"rimraf": "^3.0.0",
"sass-loader": "^8.0.0",
"ts-loader": "^6.2.0",
"ts-pegjs": "^0.2.6",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.6.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
}
}