-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.92 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.92 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
{
"name": "softwarecrafters-website",
"version": "1.0.0",
"description": "The website behind softwarecrafters.org",
"main": "index.js",
"repository": "git@github.com:softwarecrafters/website.git",
"author": "Raimo Radczewski <raimoradczewski@googlemail.com>",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "npm-run-all test build:data build:js build:copy-data",
"build:js": "vite build",
"preview": "vite preview",
"build:data": "npm-run-all build:communities build:conferences build:conferences-ics build:conferences-jsonp",
"build:communities": "node scripts/build-communities.js",
"build:conferences": "node scripts/build-conferences.js",
"build:conferences-ics": "node scripts/build-conferences-ics.js",
"build:conferences-jsonp": "node scripts/build-conferences-jsonp.js",
"build:copy-data": "cp communities.json conferences.json conferences.ics conferences.js communities_schema.json conferences_schema_v2.json target/",
"test": "npm-run-all test:data test:js",
"test:data": "node scripts/test-communities.js && node scripts/test-conferences.js",
"test:js": "jest",
"watch": "npm-run-all build:communities build:conferences build:conferences-ics -p dev"
},
"jest": {
"testEnvironmentOptions": {
"url": "http://localhost:5000"
}
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-external-helpers": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@vitejs/plugin-legacy": "^7.2.1",
"ajv": "^8.11.0",
"ajv-formats": "^3.0.1",
"babel-jest": "^28.0.3",
"jest": "^28.0.3",
"npm-run-all": "^4.1.5",
"regenerator-runtime": "^0.13.9",
"sass": "^1.51.0",
"serve": "^14.1.2",
"vite": "^7.3.1"
},
"dependencies": {
"@babel/runtime": "^7.27.6",
"ics": "^2.35.0",
"js-joda": "^1.11.0",
"mapbox-gl": "^2.8.2",
"slugify": "^1.6.5"
}
}