This repository has been archived by the owner on Jan 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
83 lines (83 loc) · 3.54 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
82
83
{
"authors": [
"Ondrej Synacek <[email protected]>"
],
"name": "avocode-email-tagsinput-monorepo",
"scripts": {
"build": "npm run clean && lerna run build --stream",
"build:package": "lerna run build --stream --scope",
"clean:all": "npm run clean && lerna clean && rm -rf node_modules/",
"clean": "lerna run clean --stream",
"clean:package": "lerna run clean --stream --scope",
"eslint": "eslint .",
"flow": "lerna run flow --stream",
"pack": "lerna run pack --stream",
"postinstall": "lerna bootstrap --ci",
"profile": "lerna run profile --stream",
"profile:package": "lerna run profile --stream --scope",
"publish:package": "lerna run publish --stream --scope",
"publish": "lerna publish from-git --yes && npm run publish:package playground",
"start": "concurrently \"lerna run copy-api-docs --scope playground\" \"lerna run build:watch --stream --scope @avocode/better-react-tagsinput\" \"lerna run flow:libdef:watch --scope @avocode/better-react-tagsinput\" \"lerna run build:watch --stream --scope @avocode/avocode-email-tagsinput\" \"lerna run flow:libdef:watch --scope @avocode/avocode-email-tagsinput\" \"lerna run build:watch --stream --scope @avocode/styled-avocode-email-tagsinput\" \"lerna run flow:libdef:watch --scope @avocode/styled-avocode-email-tagsinput\" \"lerna run start --scope playground --stream\"",
"test": "lerna run test --stream",
"test:unit": "jest --config test/jest.config.json",
"test:e2e": "jest --config test/jest-e2e.config.json --testTimeout=10000",
"test:e2e:dev:full": "concurrently \"npm run start\" \"sleep 20 && npm run test:e2e:dev\"",
"test:e2e:dev": "NODE_ENV=development npm run test:e2e",
"test:watch": "jest --watch --config test/jest.config.json",
"version": "lerna version"
},
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.7.0",
"babel-eslint": "^8.0.3",
"babel-jest": "^24.9.0",
"chai": "^4.2.0",
"chai-enzyme": "^1.0.0-beta.1",
"chai-sinon": "^2.8.1",
"concurrently": "^4.1.2",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "~4.19.1",
"eslint-config-airbnb": "~15.1.0",
"eslint-import-resolver-webpack": "^0.10.0",
"eslint-plugin-babel": "~4.1.2",
"eslint-plugin-chai-expect": "^2.0.1",
"eslint-plugin-change-listeners": "^0.0.3",
"eslint-plugin-flowtype": "3.13.0",
"eslint-plugin-import": "~2.12.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-jsx-a11y": "~5.1.1",
"eslint-plugin-lodash": "^5.1.0",
"eslint-plugin-mutation": "^1.0.0",
"eslint-plugin-react": "github:jankuca/eslint-plugin-react#feature/ignore-alphabet-noncallback",
"eslint-plugin-react-props-in-state": "^1.0.5",
"eslint-plugin-standard": "~2.0.0",
"flow-bin": "^0.111.0",
"flow-copy-source": "^2.0.8",
"flow-typed": "^2.6.2",
"jest": "^24.9.0",
"jsdom": "^15.2.1",
"lerna": "^3.18.4",
"mini-css-extract-plugin": "^0.8.0",
"puppeteer": "^1.20.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-test-renderer": "^16.11.0",
"sinon": "^7.5.0",
"surge": "^0.21.3",
"uuid": "^3.3.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {},
"engines": {
"node": ">=12.7.0",
"npm": ">=6.10.0"
},
"repository": "https://gitlab.avcd.cz/ondrasynacek/avocode-email-tagsinput"
}