-
Notifications
You must be signed in to change notification settings - Fork 569
/
package.json
54 lines (54 loc) · 1.4 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
{
"name": "design-system-starter-kit",
"repository": "https://github.com/salesforce-ux/design-system-starter-kit",
"version": "1.0.0",
"description": "Boilerplate to get started with a local Lightning Design System installation",
"main": "",
"scripts": {
"test": "gulp",
"dev": "gulp",
"prestart": "gulp build && node server",
"lint:js": "eslint . --format codeframe",
"lint:css": "stylelint src/styles/**/*.scss"
},
"engines": {
"node": "^12.0.0",
"npm": "^6.0.0"
},
"keywords": [
"lightning",
"design",
"system",
"slds",
"salesforce"
],
"author": "Salesforce",
"license": "BSD-3-Clause",
"dependencies": {
"@salesforce-ux/design-system": "^2.*",
"browser-sync": "^2.18.8",
"del": "^2.2.2",
"express": "^4.15.2",
"gulp": "^4.0.0",
"gulp-autoprefixer": "^4.0.0",
"gulp-data": "^1.2.1",
"gulp-load-plugins": "^2.0.0",
"gulp-nunjucks": "^3.0.0",
"gulp-plumber": "^1.1.0",
"gulp-sass": "^5.0.0",
"gulp-sourcemaps": "^2.5.1",
"http-auth": "^3.1.3",
"json5": "^0.5.1",
"sass": "^1.43.4"
},
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-standard": "^10.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"stylelint": "^7.10.1",
"stylelint-config-slds": "^1.0.6"
}
}