-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.6 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
{
"name": "ikaros",
"version": "0.1.0",
"main": "index.js",
"description": "",
"scripts": {
"start": "yarn watch:js && yarn watch:css",
"watch:js": "parcel watch ./src/index.js --out-file index.js --out-dir ./build/js --no-cache --public-url .",
"watch:css": "parcel watch ./src/index.css --out-file index.css --out-dir ./build/style --no-cache --no-source-maps",
"build": "yarn build:js && yarn build:css",
"build:js": "yarn build:index",
"build:index": "yarn parcel build ./src/index.js --out-file index.js --out-dir ./build/js --no-cache --public-url .",
"build:login": "parcel build ./src/login.js --out-file login.js --out-dir ./build/js --no-cache --public-url .",
"build:admin": "parcel build ./src/admin.js --out-file admin.js --out-dir ./build/js --no-cache --public-url .",
"build:css": "yarn parcel build ./src/index.css --out-file index.css --out-dir ./build/style --no-cache --no-source-maps"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/polyfill": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"autoprefixer": "^9.8.6",
"eslint": "^7.11.0",
"htmlhint": "^0.14.1",
"jsdoc": "^3.6.6",
"parcel": "^1.12.4",
"postcss-calc": "^7.0.5",
"postcss-scss": "^3.0.2",
"precss": "^4.0.0",
"sass": "^1.27.0",
"stylelint": "^13.7.2",
"stylelint-config-standard": "^20.0.0"
},
"dependencies": {
"@aegis-framework/artemis": "^0.3.24",
"@aegis-framework/kayros.css": "^0.4.5",
"@fortawesome/fontawesome-free": "^5.15.1",
"animate.css": "^4.1.1"
}
}