-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.93 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.93 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": "udt-dataset-managers",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"license": "MIT",
"repository": "github:UniversalDataTool/dataset-managers",
"scripts": {
"build": "babel src --out-dir dist",
"build:watch": "babel --watch src --out-dir dist",
"test": "npm run test:node",
"test:node": "ava tests/**/*.test.js",
"test:browser": "dotenv -- yarn run cypress run",
"dev:browser": "dotenv -- yarn run cypress open"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@cypress/react": "^4.16.4",
"@semantic-release/git": "^9.0.0",
"ava": "^3.13.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"browser-env": "^3.3.0",
"cypress": "^6.0.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.12.1",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-react": "^7.21.5",
"get-port": "^5.1.1",
"mock-local-storage": "^1.1.15",
"tmp": "^0.2.1",
"udt-collaboration-server": "^1.0.4"
},
"dependencies": {
"aws-amplify": "^3.3.4",
"axios": "^0.20.0",
"concurrently": "^5.3.0",
"prettier": "^2.2.1",
"rfc6902": "^4.0.1",
"seamless-immutable": "^7.1.4",
"seamless-immutable-patch": "^1.0.5"
},
"browserslist": "> 0.25%, not dead",
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:cypress/recommended"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2020,
"sourceType": "module"
},
"parser": "babel-eslint",
"plugins": [
"react",
"cypress"
],
"rules": {
"no-unused-vars": [
"warn",
{}
]
}
},
"prettier": {
"semi": false
}
}