-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
79 lines (79 loc) · 2.89 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
{
"name": "nice-design-system",
"private": true,
"version": "5.0.0",
"description": "Monorepo for the NICE Design System",
"scripts": {
"start": "npm run dev",
"dev": "npm run clean:ts && npm run build:ts && concurrently npm:build:ts:watch npm:docs:dev",
"// ICONS": "",
"icons": "lerna run --stream --scope=@nice-digital/icons",
"icons:start": "npm run icons -- start",
"icons:svgr": "npm run icons -- svgr",
"icons:esify": "npm run icons -- esify",
"icons:webfont": "npm run icons -- webfont",
"icons:readme": "npm run icons -- readme",
"// DOCUMENTATION": "",
"docs:dev": "lerna run --stream --no-prefix --scope=@nice-digital/design-system-docs dev",
"docs:build": "lerna run --stream --no-prefix --scope=@nice-digital/design-system-docs build",
"// LERNA": "",
"lerna": "lerna",
"lerna:clean": "lerna clean -y",
"release:alpha": "npm run clean:ts && npm run build:ts && lerna publish --dist-tag alpha",
"release:latest": "npm run clean:ts && npm run build:ts && lerna publish --dist-tag latest",
"// TESTS": "",
"test": "cross-env CI=true npm run test:unit && npm run lint",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"// LINTING": "",
"lint": "npm run prettier && npm run lint:js && npm run lint:scss",
"lint:js": "eslint ./{packages,components}/**/*.js",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:scss": "stylelint ./{packages,components}/**/*.scss",
"lint:scss:fix": "npm run lint:scss -- --fix",
"prettier": "prettier --check components/*/{src,scss,__{tests,mocks}__}/**/*.{scss,js,json} packages/**/*.{scss,js,json}",
"prettier:fix": "npm run prettier -- --write",
"// COMPILE TYPESCRIPT": "",
"clean:ts": "tsc --build --clean",
"build:ts": "tsc --build",
"build:ts:watch": "tsc --build --watch",
"prebuild:ts": "lerna exec rimraf es",
"// BUILD CSS": "",
"build:css": "lerna run --scope=@nice-digital/design-system build-css"
},
"author": "Ian Routledge <[email protected]>",
"contributors": [
"NICE Digital Services (https://www.nice.org.uk/digital)",
"Ian Routledge (http://ediblecode.com)"
],
"license": "MIT",
"engines": {
"node": ">= 16.18.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"concurrently": "^7.5.0",
"cross-env": "^7.0.3",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lerna": "^6.6.2",
"prettier": "2.8.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"volta": {
"node": "18.18.2"
},
"workspaces": [
"./components/*",
"./docs"
]
}