-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.52 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
{
"name": "scoutrfp",
"version": "1.0.0",
"description": "Scout RFP Interview App",
"main": "index.js",
"repository": "[email protected]:gavar/scoutrfp.git",
"author": "Max Stankevich <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "webpack",
"serve": "webpack-dev-server --hot",
"test": "node jasmine.config.js",
"deploy": "node ./deploy.js"
},
"gh-pages-deploy": {
"staticpath": "dist",
"noprompt": false
},
"dependencies": {
"@material-ui/core": "^3.6.1",
"@material-ui/icons": "^3.0.1",
"classnames": "^2.2.6",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^5.1.1",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@types/classnames": "^2.2.6",
"@types/expect": "*",
"@types/jasmine": "*",
"@types/jsdom": "*",
"@types/node": "^10.12.11",
"@types/react-dom": "^16.0.11",
"@types/react-redux": "^6.0.10",
"@types/redux-logger": "^3.0.6",
"@types/yargs": "*",
"core-js": "*",
"expect": "*",
"gh-pages": "^2.0.1",
"jasmine": "*",
"jasmine-console-reporter": "*",
"jest-dom": "*",
"jsdom": "*",
"node-fetch": "*",
"raf": "*",
"react-testing-library": "*",
"redux-devtools-extension": "^2.13.7",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.7.0",
"tslib": "^1.9.3",
"typescript": "^3.2.1",
"yargs": "*"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}