forked from tikui/tikui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.17 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.17 KB
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": "tikui",
"version": "1.0.0",
"description": "Pattern Library tool",
"keywords": [
"ui",
"ui kit",
"design system",
"pattern library"
],
"homepage": "https://github.com/tikui/tikui.git#readme",
"bugs": {
"url": "https://github.com/tikui/tikui/issues"
},
"license": "MIT",
"author": {
"name": "Anthony Rey"
},
"contributors": [
{
"name": "Hippolyte Durix"
},
{
"name": "Jérémie Tisserand"
},
{
"name": "Arnaud Freismuth"
}
],
"main": "src/index.pug",
"repository": "github:tikui/tikui",
"scripts": {
"serve": "node build/tikui.js serve",
"build": "node build/tikui.js build",
"lint": "concurrently npm:sass:lint npm:pug:lint",
"pug:lint": "pug-lint src",
"sass:lint": "stylelint \"src/**/*.scss\" --syntax scss",
"sass:lint:fix": "stylelint \"src/**/*.scss\" --syntax scss --fix",
"postinstall": "tsc"
},
"dependencies": {
"@types/concurrently": "^4.1.0",
"@types/escape-html": "0.0.20",
"@types/node": "^12.11.2",
"@types/pug": "^2.0.4",
"@types/rimraf": "^2.0.3",
"@types/showdown": "^1.9.3",
"bootstrap": "^4.2.1",
"commander": "^3.0.2",
"concurrently": "^5.0.0",
"escape-html": "^1.0.3",
"html2pug": "^4.0.0",
"prismjs": "^1.17.1",
"pug": "^2.0.4",
"pug-cli": "^1.0.0-alpha6",
"pug-multiple-basedirs-plugin": "0.1.5",
"recursive-copy": "^2.0.9",
"rimraf": "^3.0.0",
"sass": "^1.23.0",
"showdown": "^1.9.0",
"tikuidoc-tikui": "^1.0.0",
"typescript": "^3.6.4"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.1",
"@types/sass": "^1.16.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"husky": "^3.0.9",
"node-watch": "^0.6.3",
"pug-lint": "^2.6.0",
"reload": "^3.0.3",
"stylelint": "^11.1.1",
"stylelint-config-concentric-order": "^3.5.0",
"stylelint-config-sass-guidelines": "^6.1.0",
"stylelint-config-scss": "^1.0.0-security",
"stylelint-config-standard": "^19.0.0"
},
"engines": {
"node": ">=10.16.3",
"npm": ">=6.9.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}