-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
55 lines (55 loc) · 2.05 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
{
"name": "softwarecrafters-website",
"version": "1.0.0",
"description": "The website behind softwarecrafters.org",
"main": "index.js",
"repository": "[email protected]:softwarecrafters/website.git",
"author": "Raimo Radczewski <[email protected]>",
"license": "MIT",
"scripts": {
"build": "npm-run-all test build:communities build:conferences build:conferences-ics build:conferences-jsonp build:js",
"build:communities": "node scripts/build-communities.js && cp communities.json target/",
"build:conferences": "node scripts/build-conferences.js && cp conferences.json target/",
"build:conferences-ics": "node scripts/build-conferences-ics.js && cp conferences.ics target/",
"build:conferences-jsonp": "node scripts/build-conferences-jsonp.js && cp conferences.js target/",
"build:js": "rollup -c rollup.config.js",
"test": "npm-run-all test:data test:js",
"test:data": "node scripts/test-communities.js && node scripts/test-conferences.js",
"test:js": "jest",
"watch:js": "rollup --watch -c rollup.config.js",
"watch:serve": "serve target/",
"watch": "npm-run-all build:communities build:conferences build:conferences-ics -p watch:serve watch:js"
},
"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",
"ajv": "^8.11.0",
"babel-jest": "^28.0.3",
"glob": "^8.0.1",
"jest": "^28.0.3",
"npm-run-all": "^4.1.5",
"regenerator-runtime": "^0.13.9",
"rollup": "^2.70.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-scss": "^3.0.0",
"sass": "^1.51.0",
"serve": "^14.1.2"
},
"dependencies": {
"@babel/runtime": "^7.17.9",
"ics": "^2.35.0",
"js-joda": "^1.11.0",
"mapbox-gl": "^2.8.2",
"slugify": "^1.6.5"
}
}