-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.54 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": "moodlists-frontend",
"version": "1.0.0",
"license": "UNLICENSED",
"description": "Frontend Repo for moodlist.skysteve.com",
"main": "src/index.ts",
"scripts": {
"build": "run-p build-sass build-ts copy-index",
"build-sass": "sass sass:build/css --load-path node_modules --style compressed",
"build-ts": "rollup --config rollup.config.js --no-esModule",
"copy-index": "mkdir -p build; cp -r html/* build/",
"run-local": "run-p serve watch-copy-index watch-sass watch-ts",
"serve": "http-server build -p 8012 -o",
"start": "yarn run-local",
"test": "echo \"Error: no test specified\" && exit 1",
"watch-copy-index": "onchange -i 'html/**/*.html' -- npm run copy-index",
"watch-sass": "sass sass:build/css --load-path node_modules --watch",
"watch-ts": "rollup --config rollup.config.js --no-esModule --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skysteve/moodlists-frontend.git"
},
"author": "skysteve",
"bugs": {
"url": "https://github.com/skysteve/moodlists-frontend/issues"
},
"homepage": "https://github.com/skysteve/moodlists-frontend#readme",
"dependencies": {
"bulma": "^0.7.4",
"sass": "^1.17.0"
},
"devDependencies": {
"http-server": "^0.11.1",
"npm-run-all": "^4.1.5",
"onchange": "^5.2.0",
"prettier": "1.16.4",
"rollup": "^1.1.2",
"rollup-plugin-tslint": "^0.2.2",
"rollup-plugin-typescript": "^1.0.0",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3"
}
}