-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) 路 1.59 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) 路 1.59 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
{
"name": "semantic-forms-documentation",
"main": "build.js",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"check-if-css-is-disabled": "2.0.2",
"highlight.js": "11.11.1",
"roosevelt": "0.31.8",
"semantic-forms": "../",
"sass": "1.98.0",
"teddy": "1.1.4",
"webpack": "5.105.4"
},
"devDependencies": {
"http-server": "14.1.1",
"nodemon": "3.1.14",
"standard": "17.1.2",
"stylelint": "17.11.0",
"stylelint-config-standard-scss": "17.0.0"
},
"nodemonConfig": {
"ignore": [
"public/"
],
"ext": "scss html js json"
},
"standard": {
"ignore": [
"public/"
]
},
"scripts": {
"d": "nodemon --exec \"node build.js --development-mode && http-server public/\"",
"dev": "nodemon --exec \"node build.js --development-mode && http-server public/\"",
"development": "nodemon --exec \"node build.js --development-mode && http-server public/\"",
"p": "nodemon --exec \"node build.js --production-mode && http-server public/\"",
"prod": "nodemon --exec \"node build.js --production-mode && http-server public/\"",
"production": "nodemon --exec \"node build.js --production-mode && http-server public/\"",
"build": "node build.js --production-mode",
"build-dev": "node build.js --development-mode",
"lint": "npm run standard && npm run stylelint",
"standard": "./node_modules/.bin/standard",
"stylelint": "./node_modules/.bin/stylelint \"statics/css/**/*.scss\"",
"start": "nodemon --exec \"node build.js --production-mode && http-server public/\"",
"test": "npm run lint"
}
}