forked from SpareBank1/designsystem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.71 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
{
"name": "@sb1/ffe",
"version": "1.0.0",
"description": "Felles Front End",
"author": "SpareBank 1",
"license": "SEE LICENSE IN README.md",
"private": true,
"scripts": {
"clean": "run-s clean:lib clean:lerna:clean clean:lerna",
"clean:lib": "rimraf packages/*/lib packages/*/es packages/*/types",
"clean:lerna": "lerna clean --yes",
"clean:lerna:clean": "lerna run clean",
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap --no-ci",
"build": "lerna run build",
"watch": "lerna run --parallel watch",
"ghpages": "lerna run ghpages",
"lint": "lerna run lint",
"start": "run-p watch start:component-overview",
"start:component-overview": "lerna run start --scope='@sb1/ffe-component-index'",
"test": "./buildtool/bin/cli.js jest",
"test:watch": "./buildtool/bin/cli.js jest --watch",
"lerna": "lerna",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@testing-library/dom": "^7.30.3",
"@testing-library/react": "^9.3.1",
"@testing-library/user-event": "^13.1.5",
"babel-eslint": "^9.0.0",
"case": "^1.5.5",
"eslint": "^5.9.0",
"eslint-config-prettier": "^4.1.0",
"husky": "^7.0.4",
"lerna": "^5.5.1",
"mkdirp": "^1.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^1.15.2",
"pretty-quick": "^1.8.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"regenerator-runtime": "^0.13.2",
"rimraf": "^3.0.2",
"stylelint-config-prettier": "^9.0.3"
}
}