-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.6 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
73
74
75
76
77
78
79
80
81
{
"name": "egendata-cv",
"version": "0.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 <[email protected]>",
"Einar Persson <[email protected]>",
"Johan Öbrink <[email protected]>",
"Alexander Czigler <[email protected]>"
],
"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.0.1",
"@smooth-ui/core-sc": "^7.1.1",
"axios": "^0.18.1",
"changecase-objects": "^1.1.0",
"copy-to-clipboard": "^3.0.8",
"dotenv": "^6.2.0",
"elastic-apm-js-base": "^3.0.0",
"elastic-apm-node": "^2.13.0",
"express": "^4.16.3",
"ioredis": "^4.14.0",
"jsonwebtoken": "^8.3.0",
"morgan": "^1.9.1",
"next": "^7.0.3",
"qrcode.react": "^0.8.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-spinners": "^0.4.8",
"react-spring": "^6.1.10",
"styled-components": "^4.1.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/exec": "^3.3.6",
"@semantic-release/git": "^7.0.16",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-plugin-styled-components": "^1.10.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"eslint": "^5.13.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^21.24.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-standard": "^4.0.0",
"husky": "^3.0.5",
"jest": "^24.8.0",
"jest-canvas-mock": "^2.0.0-beta.1",
"lint-staged": "^9.2.5",
"nodemon": "^1.18.10",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^16.8.1",
"semantic-release": "^15.13.24",
"semantic-release-docker": "^2.2.0",
"supertest": "^3.4.2"
}
}