forked from SpareBank1/designsystem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 3.05 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
{
"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:lib": "rimraf packages/*/lib",
"clean:lerna": "lerna clean --yes",
"prettier": "pretty-quick --staged",
"commitmsg": "commitlint -e $GIT_PARAMS",
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap",
"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 --autoprefix=\"last 3 versions, IE>=9\" packages/ffe-all.less dist/ffe.css",
"build:assets": "mkdir -p dist/assets && cp 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": {
"@commitlint/cli": "^5.2.5",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"case": "^1.5.4",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"css-loader": "^0.28.7",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.13.1",
"eslint-config-prettier": "^2.9.0",
"handlebars": "^4.0.11",
"husky": "^0.14.3",
"jest": "^22.4.0",
"kss": "^3.0.0-beta.18",
"lerna": "^2.8.0",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"less-plugin-autoprefix": "^1.5.1",
"marked": "^0.3.15",
"mini-css-extract-plugin": "^0.4.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.2",
"postcss-loader": "^2.1.4",
"prettier": "^1.10.2",
"pretty-quick": "^1.4.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-scrollspy": "^3.3.5",
"react-styleguidist": "^7.0.5",
"rimraf": "^2.6.2",
"style-loader": "^0.19.1",
"stylelint-config-prettier": "^2.0.0",
"webpack": "^4.6.0"
},
"jest": {
"setupTestFrameworkScriptFile": "./test-setup.js",
"coveragePathIgnorePatterns": [
"/node_modules/",
"<rootDir>/packages/.*/lib/"
]
}
}