forked from softwarecrafters/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 2.02 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
{
"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": {
"testURL": "http://localhost:5000"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"ajv": "^6.12.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.1.0",
"glob": "^7.1.6",
"jest": "^25.1.0",
"npm-run-all": "^4.1.5",
"regenerator-runtime": "^0.13.3",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-scss": "^2.1.0",
"serve": "^11.3.0"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"ics": "^2.18.0",
"js-joda": "^1.11.0",
"mapbox-gl": "^1.8.0",
"slugify": "^1.3.6"
}
}