-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.16 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
{
"name": "acmlanding",
"version": "1.0.0",
"description": "New landing page for UMass ACM",
"keywords": [
"sass",
"bulma",
"css"
],
"author": "Dan Cline <dan@dancline.net> (http://dancline.net)",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^7.1.5",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015-ie": "^6.7.0",
"bulma": "^0.6.0",
"node-sass": "^4.5.3",
"postcss-cli": "^4.1.1"
},
"scripts": {
"css-deploy": "npm run css-build && npm run css-postcss",
"css-build": "node-sass _sass/main.scss css/main.css",
"css-postcss": "postcss --use autoprefixer --output css/main.css css/main.css",
"css-watch": "npm run css-build -- --watch",
"deploy": "npm run css-deploy && npm run js-build",
"js-build": "babel _javascript --out-dir lib",
"js-watch": "npm run js-build -- --watch",
"start": "npm run css-watch | npm run js-watch"
},
"homepage": "https://github.com/UMassACM/ACMLanding#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/UMassACM/ACMLanding.git"
},
"dependencies": {
"bulma-extensions": "^2.2.1"
}
}