-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.97 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
46
47
48
49
50
51
{
"name": "intractive",
"version": "6.0.0",
"description": "Intractive Hotel System",
"private": "true",
"scripts": {
"watch:webpack": "webpack --watch",
"watch:sass": "node-sass assets/sass/main.scss assets/css/style.css -w",
"start": "npm-run-all watch:sass",
"compile:sass": "node-sass assets/sass/main.scss assets/css/style.comp.css",
"concat:css": "concat -o assets/css/style.concat.css assets/css/icons-font.css assets/css/style.comp.css",
"prefix:css": "npx postcss assets/css/style.concat.css --use autoprefixer -o assets/css/style.prefix.css",
"compress:css": "node-sass assets/css/style.prefix.css assets/css/style.css --output-style compressed",
"clean:css": "del-cli assets/css/style.comp.css assets/css/style.concat.css assets/css/style.prefix.css",
"build:webpack": "webpack --mode production",
"build:project": "npm-run-all compile:sass concat:css prefix:css compress:css clean:css build:webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lauslim12/intract-hotel-system.git"
},
"author": "Nicholas Dwiarto <[email protected]> (https://nicholasdw.com)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/lauslim12/intract-hotel-system/issues"
},
"homepage": "https://github.com/lauslim12/intract-hotel-system#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.2.2",
"concat": "^1.0.3",
"del-cli": "^3.0.1",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"aphrodite": "^2.4.0",
"chart.js": "^2.9.4",
"react": "^16.14.0",
"react-dom": "^16.14.0"
}
}