-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
33 lines (33 loc) · 1.11 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/**"
],
"engines": { "node": "10.x" },
"scripts": {
"build": "yarn build:src && yarn build:docs",
"build:docs": "lerna run build --scope @meetup/swarm-docs",
"build:src": "lerna run build --scope @meetup/swarm-constants --scope @meetup/swarm-styles --scope @meetup/swarm-components --scope @meetup/swarm-icons",
"now-build": "npm run build",
"now-dev": "cd packages/swarm-docs && gatsby develop -p $PORT",
"test": "yarn && yarn build:src && yarn test:unit",
"test:unit": "lerna run --scope @meetup/swarm-components test:unit --stream",
"test:updateSnaps": "yarn test:unit -- -- --u"
},
"devDependencies": {
"@commitlint/cli": "7.5.2",
"@commitlint/config-conventional": "7.5.0",
"eslint": "5.16.0",
"eslint-config-prettier": "4.3.0",
"eslint-loader": "2.1.2",
"eslint-plugin-flowtype": "3.5.1",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.12.4",
"husky": "2.3.0",
"lerna": "3.13.1",
"lint-staged": "8.1.7",
"prettier": "1.17.1",
"typescript": "^3.6.4"
}
}