-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.58 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.58 KB
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
73
74
75
76
77
78
79
80
81
{
"name": "egendata-cv",
"version": "1.1.1",
"description": "A Data Source/Data Sink offering a searchable CV",
"main": "server.js",
"scripts": {
"build": "next build",
"start": "node server.js",
"dev": "nodemon --watch ./api --watch ./components --watch ./pages --watch ./services --watch server.js --watch ../../client/lib",
"test": "NODE_ENV=test jest --color",
"test:watch": "NODE_ENV=test jest --watchAll",
"lint": "eslint '**/*.js'",
"testAndLint": "npm test && npm run lint"
},
"contributors": [
"Adam Näslund <adam.naslund@iteam.se>",
"Einar Persson <einar.persson@iteam.se>",
"Johan Öbrink <johan.obrink@iteam.se>",
"Alexander Czigler <alexander@iteam.se>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/egendata/example-cv/issues"
},
"homepage": "https://github.com/egendata/example-cv#readme",
"dependencies": {
"@egendata/client": "1.2.0",
"@smooth-ui/core-sc": "^10.1.0",
"axios": "^0.19.2",
"change-case": "^3.1.0",
"changecase-objects": "^1.1.0",
"copy-to-clipboard": "^3.2.0",
"dotenv": "^8.1.0",
"elastic-apm-node": "^3.0.0",
"express": "^4.17.1",
"ioredis": "^4.14.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"next": "^9.2.0",
"qrcode.react": "^1.0.0",
"react": "^16.10.1",
"react-dom": "^16.10.1",
"react-spinners": "^0.6.1",
"react-spring": "^8.0.27",
"styled-components": "^4.4.1",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/exec": "^3.3.8",
"@semantic-release/git": "^7.0.18",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-plugin-styled-components": "^1.10.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.15.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"jest": "^24.9.0",
"jest-canvas-mock": "^2.2.0",
"lint-staged": "^9.4.1",
"nodemon": "^1.19.3",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^16.10.1",
"semantic-release": "^15.14.0",
"semantic-release-docker": "^2.2.0",
"supertest": "^4.0.2"
}
}