-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.12 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.12 KB
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": "coderstats",
"version": "1.0.0",
"description": "coderstats",
"keywords": [
"visualization",
"github"
],
"author": {
"name": "Ramiro Gómez",
"url": "https://ramiro.org"
},
"scripts": {
"build:scripts": "babel src/js --out-dir static/compiled --minified --no-comments",
"build:style-coder": "sass src/scss/coder.scss:static/compiled/coder.css --style compressed",
"build:style-main": "sass src/scss/style.scss:static/compiled/style.css --style compressed",
"watch:scripts": "nodemon -e js -w src/js -x 'npm run build:scripts'",
"watch:style-coder": "nodemon -e scss -w src/scss/coder.scss -x 'npm run build:style-coder'",
"watch:style-main": "nodemon -e scss -w src/scss -x 'npm run build:style-main'",
"build": "run-p build:*",
"watch": "run-p watch:*"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.10",
"babel-loader": "^9.1.3",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"sass": "^1.66.1"
},
"dependencies": {
"@getbase/base": "^5.2.0"
}
}