-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.77 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.77 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
{
"name": "lvconnect",
"private": true,
"workspaces": [
"packages/**"
],
"version": "2.9.4",
"description": "Authentication platform for LinkValue",
"license": "Proprietary",
"main": "./server/index.js",
"scripts": {
"start": "NODE_ENV=production node .",
"create-superuser": "NODE_ENV=production lvconnect create-superuser",
"dev": "run-p dev:front dev:back",
"dev:back": "APP_ENV=dev nodemon . --watch ./packages/api --watch ./packages/config",
"dev:back:test": "APP_ENV=test nodemon . --watch ./packages/api --watch ./packages/config",
"dev:front": "APP_ENV=dev webpack-dev-server --hot",
"dev:front:test": "APP_ENV=test webpack-dev-server --hot",
"build": "webpack -p",
"lint": "eslint '**/*.{js,jsx}'",
"test": "yarn workspace @lvconnect/api run test",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"version": "yarn changelog && git add CHANGELOG.md",
"typecheck": "flow",
"install:types": "flow-typed install -s",
"e2e": "APP_ENV=test yarn cypress run --reporter mocha-multi-reporters --reporter-options configFile=cypress/reporters.json",
"e2e:open": "APP_ENV=test yarn cypress open"
},
"repository": {
"type": "git",
"url": "https://github.com/Linkvalue-Interne/LvConnect.git"
},
"author": "LinkValue",
"bugs": {
"url": "https://github.com/Linkvalue-Interne/LvConnect/issues"
},
"homepage": "https://github.com/Linkvalue-Interne/LvConnect",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@hot-loader/react-dom": "^16.8.4",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.5",
"babel-plugin-jsx-remove-data-test-id": "^2.0.0",
"clean-webpack-plugin": "^3.0.0",
"conventional-changelog-cli": "^2.0.12",
"core-js": "^3.0.0",
"cypress": "^3.2.0",
"cypress-cucumber-preprocessor": "^1.5.0",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"fast-async": "^6.3.8",
"file-loader": "^4.2.0",
"flow-bin": "^0.113.0",
"flow-typed": "^2.6.2",
"html-webpack-plugin": "^3.2.0",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.18.0",
"mocha-multi-reporters": "^1.1.7",
"nodemon": "^2.0.1",
"npm-run-all": "^4.1.5",
"terser-webpack-plugin": "^1.1.0",
"url-loader": "^2.1.0",
"webapp-webpack-plugin": "^2.6.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.1.5"
},
"engines": {
"node": "^12.6.0"
}
}