forked from SUI-Components/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.3 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
{
"name": "@s-ui/sui",
"version": "0.0.0",
"private": true,
"description": "Monorepo for SUI (Simple User Interface) packages.",
"keywords": [
"adevinta",
"monorepo",
"sui"
],
"workspaces": [
"packages/**"
],
"scripts": {
"phoenix": "npx -p @s-ui/mono sui-mono phoenix",
"phoenix:ci": "npx -p ./packages/sui-mono sui-mono phoenix --ci",
"co": "sui-mono commit",
"lint": "sui-lint js && sui-lint sass",
"test": "npm run test:client && npm run test:server",
"test:ci": "npm run test:server",
"test:client": "NODE_ENV=test sui-test browser -P \"packages/*/test/**/*Spec.js\" -I 'packages/*/test/server/*Spec.js'",
"test:client:watch": "npm run test:client -- --watch",
"test:server": "NODE_ENV=test & sui-test server -P \"./packages/*/\\!\\(browser\\)/server/*.js\"",
"test:server:watch": "npm run test:server -- --watch",
"test:e2e": "node ./packages/sui-studio/test/server/integration/static-server.js ./packages/sui-studio/test/server/integration/sample-studio/public && npx sui-test e2e --baseUrl=http://localhost:1234"
},
"devDependencies": {
"@babel/cli": "7.12.1",
"@s-ui/lint": "3",
"@s-ui/mono": "2",
"@s-ui/precommit": "2",
"@s-ui/test": "4",
"chai": "4.2.0",
"husky": "4.3.0",
"sinon": "9.2.1",
"validate-commit-msg": "2.14.0"
},
"config": {
"sui-mono": {
"access": "public",
"packagesFolder": "./packages"
},
"validate-commit-msg": {
"types": "@s-ui/mono/src/types"
},
"sui-test": {
"server": {
"forceTranspilation": [
"./packages/sui-ssr/server"
]
}
}
},
"eslintConfig": {
"extends": [
"./node_modules/@s-ui/lint/eslintrc.js"
]
},
"babel": {
"presets": [
"sui"
]
},
"author": "",
"repository": {
"type": "git",
"url": "git+https://github.com/SUI-Components/sui.git"
},
"bugs": {
"url": "https://github.com/SUI-Components/sui/issues"
},
"homepage": "https://github.com/SUI-Components/sui/#readme",
"license": "MIT",
"prettier": "./node_modules/@s-ui/lint/.prettierrc.js",
"stylelint": {
"extends": "./node_modules/@s-ui/lint/stylelint.config.js"
},
"husky": {
"hooks": {
"pre-commit": "sui-precommit run",
"commit-msg": "validate-commit-msg"
}
}
}