-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.87 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
{
"name": "syllabus-builder",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"dev": "vite",
"build": "npm-run-all test build:vite",
"build:vite": "vite build",
"build:css": "npm-run-all css-compile css-prefix",
"preview": "vite preview",
"css:compile": "sass --load-path=node_modules src/scss:dist/css/",
"css:lint": "stylelint \"src/scss/**/*\"",
"css:prefix": "postcss --replace dist/css/starter.css --use autoprefixer --map",
"css-purge": "purgecss --keyframes --css dist/css/starter.css --content index.html \"node_modules/bootstrap/js/dist/{util,modal}.js\" --output dist/css/",
"eslint": "eslint \"src/**/*.ts\"",
"test": "npm-run-all css:lint eslint test:js",
"test:js": "vitest --watch=false",
"test:js:watch": "vitest watch",
"test:js:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"author": "",
"license": "MIT",
"dependencies": {
"bootstrap": "^5.1.3",
"bootstrap-icons": "^1.8.1",
"date-fns": "^2.25.0",
"docx": "^7.1.1",
"file-saver": "^2.0.5",
"nunjucks": "^3.2.3"
},
"devDependencies": {
"@js-temporal/polyfill": "^0.4.0",
"@types/file-saver": "^1.3.0",
"@types/nunjucks": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"@vitest/ui": "^0.8.2",
"autoprefixer": "^10.4.4",
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"happy-dom": "^2.55.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"postcss-cli": "^9.1.0",
"purgecss": "^4.1.3",
"sass": "^1.49.10",
"stylelint": "^14.6.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-twbs-bootstrap": "^3.0.1",
"typescript": "^4.4.4",
"vite": "^2.9.1",
"vite-plugin-nunjucks": "^0.1.10",
"vitest": "^0.8.2"
}
}