forked from softwarecrafters/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.17 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
{
"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": {
"build": "npm-run-all test build:communities build:js",
"build:communities": "node scripts/build-communities.js",
"build:js": "rollup -c rollup.config.js",
"test": "node scripts/test-communities.js",
"watch:js": "rollup --watch -c rollup.config.js",
"watch:serve": "serve -o target/",
"watch": "npm-run-all build:communities -p watch:serve watch:js"
},
"devDependencies": {
"ajv": "^5.2.2",
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"glob": "^7.1.2",
"npm-run-all": "^4.1.1",
"rollup": "^0.49.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.3.0",
"serve": "^6.1.0"
},
"dependencies": {
"mapbox-gl": "^0.40.0"
}
}