-
Notifications
You must be signed in to change notification settings - Fork 228
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "fluxible-repo",
"version": "1.0.0",
"private": true,
"description": "Fluxible monorepo",
"repository": {
"type": "git",
"url": "https://github.com/yahoo/fluxible"
},
"scripts": {
"build": "npm run build --workspaces --if-present && npm run dist --workspaces --if-present",
"dev:lint": "npm run lint",
"dev:test": "npm run test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "npm run lint --workspaces --if-present",
"publish": "changeset publish",
"test": "jest --forceExit",
"version": "changeset version"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.11.5",
"@changesets/cli": "^2.24.3",
"async": "^3.0.1",
"es6-promise": "^4.0.2",
"eslint": "^9.2.0",
"eslint-plugin-react": "^7.0.0",
"fluxible": "^1.0.0",
"jest": "^29.0.0",
"jsdom": "^25.0.1",
"lodash": "^4.17.5",
"pre-commit": "^1.0.7",
"prettier": "^3.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"shelljs": "^0.8.0",
"yargs": "^17.1.0",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^6.3.0"
},
"pre-commit": [
"dev:lint",
"dev:test"
],
"author": "Michael Ridgway <[email protected]>",
"license": "BSD-3-Clause",
"workspaces": [
"packages/*"
]
}