forked from softwarecrafters/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.61 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
{
"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:js",
"build:communities": "node scripts/build-communities.js && cp communities.json target/",
"build:conferences": "node scripts/build-conferences.js && cp conferences.json 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 -o target/",
"watch": "npm-run-all build:communities build:conferences -p watch:serve watch:js"
},
"devDependencies": {
"ajv": "^5.2.2",
"babel-core": "^6.26.0",
"babel-jest": "^23.0.0-alpha.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"glob": "^7.1.2",
"jest": "^22.4.2",
"npm-run-all": "^4.1.1",
"regenerator-runtime": "^0.11.1",
"rollup": "^0.56.3",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-scss": "^0.4.0",
"serve": "^6.5.0"
},
"dependencies": {
"js-joda": "^1.6.2",
"mapbox-gl": "^0.44.1",
"slugify": "^1.2.9"
}
}