-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.92 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
{
"name": "resume-website",
"version": "1.0.1",
"description": "A website that can be used to browse resume information that is stored in a JSON file",
"main": "bundle.js",
"scripts": {
"build": "webpack --config webpack.production.js && node copySample.js",
"watch": "webpack --watch --config webpack.development.js",
"start": "webpack-dev-server --open --config webpack.development.js",
"test": "karma start --single-run",
"test-watch": "karma start"
},
"keywords": [
"resume",
"portfolio",
"CV"
],
"author": "Christian Bär",
"license": "MIT",
"dependencies": {
"randomcolor": "^0.5.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-transition-group": "^4.3.0",
"smoothscroll-polyfill": "^0.4.4",
"tachyons": "^4.11.1"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/ramda": "github:types/npm-ramda#dist",
"@types/randomcolor": "^0.5.4",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"@types/react-transition-group": "^4.2.4",
"@types/sinon": "^9.0.0",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"css-loader": "^3.4.2",
"html-webpack-plugin": "^4.0.4",
"jsdom": "^16.2.2",
"karma": "^4.4.1",
"karma-chai": "^0.1.0",
"karma-jsdom-launcher": "^8.0.1",
"karma-junit-reporter": "^2.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon": "^1.0.5",
"karma-typescript-preprocessor2": "^1.2.1",
"karma-webpack": "^4.0.2",
"mocha": "^7.1.1",
"ramda": "^0.27.0",
"request": "^2.88.2",
"sinon": "^9.0.1",
"source-map-loader": "^0.2.4",
"style-loader": "^1.1.3",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
},
"repository": "https://github.com/teggno/resume-website.git"
}