forked from SpareBank1/designsystem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 3.31 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
84
85
86
87
88
89
{
"name": "@sb1/ffe",
"version": "1.0.0",
"description": "Felles Front End",
"author": "SpareBank 1",
"license": "SEE LICENSE IN README.md",
"private": true,
"resolutions": {
"eslint-scope": "3.7.1"
},
"scripts": {
"clean": "run-s clean:lib clean:lerna",
"clean:lib": "rimraf packages/*/lib",
"clean:lerna": "lerna clean --yes",
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap --no-ci",
"build": "run-s build:packages build:css",
"build:all": "run-s build build:assets build:content styleguidist:build kss:build",
"build:packages": "lerna run build",
"build:css": "lessc --clean-css --autoprefix=\"last 3 versions, IE>=9\" packages/ffe-all.less dist/ffe.css",
"build:assets": "copyfiles -f \"src/assets/*\" dist/assets",
"build:content": "node bin/build-content.js",
"lint": "lerna run --parallel lint",
"start": "run-s build build:content styleguidist:server",
"styleguidist:server": "cross-env NODE_ENV=development styleguidist server",
"styleguidist:build": "cross-env NODE_ENV=production styleguidist build",
"kss:build": "kss -c kss-config.json",
"test": "jest",
"test:ci": "lerna run lint && jest --ci --coverage --coverageReporters lcovonly && cat ./coverage/lcov.info | coveralls",
"test:watch": "jest --watch"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.0",
"case": "^1.5.4",
"copyfiles": "^2.1.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"glob": "^7.1.3",
"handlebars": "^4.0.12",
"husky": "^1.1.4",
"jest": "^23.4.2",
"kss": "^3.0.0-beta.23",
"lerna": "^3.0.1",
"less": "^3.8.1",
"less-loader": "^4.0.5",
"less-plugin-autoprefix": "^2.0.0",
"less-plugin-clean-css": "^1.5.1",
"marked": "^0.5.0",
"mini-css-extract-plugin": "^0.4.4",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.2",
"postcss-loader": "^2.1.6",
"prettier": "^1.15.2",
"pretty-quick": "^1.8.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-scrollspy": "^3.3.5",
"react-styleguidist": "7.0.5",
"regenerator-runtime": "^0.12.1",
"rimraf": "^2.6.2",
"style-loader": "^0.23.0",
"stylelint-config-prettier": "^4.0.0",
"webpack": "^4.25.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
}
}