-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "cthulhu-keeper",
"version": "1.0.0",
"description": "Webapp for running Call of Cthulhu sessions",
"main": "index.js",
"repository": "git@github.com:TomRK1089/cthulhu-keeper.git",
"author": "Tom Golden <TomRK1089@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"watch": "parcel src/index.html",
"build": "parcel build src/index.html",
"test": "jest"
},
"devDependencies": {
"@types/jest": "24.9.0",
"@types/react": "16.9.17",
"@types/react-dom": "16.9.4",
"@types/react-redux": "7.1.7",
"@types/react-router": "5.1.4",
"@types/react-router-dom": "5.1.3",
"cypress": "3.8.2",
"jest": "24.9.0",
"jest-sonar-reporter": "2.0.0",
"parcel-bundler": "1.12.4",
"prettier": "1.19.1",
"ts-jest": "24.3.0",
"typescript": "3.7.5"
},
"dependencies": {
"formik": "2.1.2",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-redux": "7.1.3",
"react-router": "5.1.2",
"react-router-dom": "5.1.2",
"redux": "4.0.5"
}
}