This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
package.json
72 lines (72 loc) · 2.13 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
{
"name": "bootcamp",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/frontend-bootcamp"
},
"main": "index.js",
"scripts": {
"start:client": "webpack-dev-server --mode development --progress --open",
"test": "jest --watch",
"build": "rimraf docs && webpack --progress --mode production",
"start:server": "nodemon -w server server/index.js",
"start": "run-p start:server start:client",
"deploy-ghpages": "git push origin :gh-pages && git subtree push --prefix docs origin gh-pages"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.4",
"@types/enzyme": "^3.9.0",
"@types/express": "^4.16.1",
"@types/jest": "^23.3.13",
"@types/node": "~10.12.21",
"@types/react": "^16.7.20",
"@types/react-dom": "^16.0.11",
"@types/react-redux": "^7.0.0",
"@types/redux": "^3.6.0",
"@types/uuid": "^3.4.4",
"body-parser": "^1.18.3",
"copy-webpack-plugin": "^4.6.0",
"cors": "^2.8.5",
"css-loader": "^2.1.0",
"fork-ts-checker-async-overlay-webpack-plugin": "^0.1.0",
"fork-ts-checker-webpack-plugin": "^0.5.2",
"html-webpack-plugin": "^4.0.0-beta.5",
"jest": "^24.1.0",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.3",
"style-loader": "^0.23.1",
"ts-jest": "^24.0.0",
"ts-loader": "^5.3.3",
"tslint": "^5.13.0",
"typescript": "^3.3.3",
"uuid": "^3.3.2",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"@uifabric/fluent-theme": "^0.14.1",
"@uifabric/theme-samples": "^0.1.4",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"express": "^4.16.4",
"highlight.js": "^9.14.2",
"immer": "^1.12.1",
"marked": "^0.6.1",
"office-ui-fabric-react": "^6.144.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-starter-kit": "^0.4.3",
"redux-thunk": "^2.3.0"
}
}