-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.28 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
{
"name": "heraldry",
"version": "0.0.1",
"description": "Heraldry creator and parser",
"main": "",
"scripts": {
"clean": "rm -rf dist .cache node_modules coverage",
"deploy": "npm run clean && npm ci && npm run dist && touch dist/.nojekyll && gh-pages -t -d dist",
"dist": "webpack",
"lint": "eslint './src/**/*.{ts,tsx}'",
"start": "parcel src/index.html",
"test": "npm run typecheck && npm run lint && jest",
"test:ci": "npm run lint && npm run typecheck && jest --ci --maxWorkers=2",
"test:rules": "npm run typecheck && GENERATOR_CASE_COUNT=1000 jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"typecheck": "tsc --noEmit"
},
"author": "Benoit Lemoine",
"license": "WTFPL",
"devDependencies": {
"@svgr/cli": "^4.3.3",
"@testing-library/react": "^9.3.2",
"@types/jest": "^25.1.4",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.14",
"@types/parsimmon": "^1.10.0",
"@types/react": "^16.9.26",
"@types/react-dom": "^16.9.5",
"@types/react-resizable": "^1.7.2",
"@types/react-router-dom": "^5.1.3",
"@types/react-test-renderer": "^16.9.2",
"@types/seedrandom": "^2.4.28",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"fast-check": "^1.23.0",
"file-loader": "^6.0.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^4.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.2.3",
"mini-css-extract-plugin": "^0.9.0",
"parcel-bundler": "^1.12.4",
"point-in-svg-polygon": "^1.0.25",
"prettier": "^2.0.2",
"react-test-renderer": "^16.12.0",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.11.2",
"bootstrap": "^4.3.1",
"lodash": "^4.17.15",
"parsimmon": "^1.13.0",
"react": "^16.13.1",
"react-bootstrap": "^1.0.0",
"react-dom": "^16.13.1",
"react-resizable": "^1.10.1",
"react-router-dom": "^5.1.2",
"seedrandom": "^3.0.5",
"sloc": "^0.2.1"
}
}