-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.77 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.77 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "jspuyo",
"version": "1.0.0",
"description": "Puyo Puyo for your browser.",
"main": "Main.ts",
"scripts": {
"autoprefix": "postcss temp.css --use autoprefixer -o public/style.css",
"autoprefix-watch": "postcss temp.css --use autoprefixer -o public/style.css --watch",
"bundle": "esbuild src/Main.ts --bundle --sourcemap --outfile=public/bundle.js --watch --define:__VUE_OPTIONS_API__=true --define:__VUE_PROD_DEVTOOLS__=false",
"bundle-server": "esbuild server.ts --bundle --platform=node --sourcemap --outfile=server.js --watch",
"compile": "npm-run-all uglify uglify-server sass autoprefix",
"eslint": "eslint src/ --fix --cache",
"node": "node-dev --respawn server.js",
"sass": "sass src/_css/style.scss temp.css --no-source-map",
"sass-watch": "sass --watch src/_css/style.scss temp.css --no-source-map",
"start": "npm-run-all --parallel bundle bundle-server node sass-watch autoprefix-watch",
"stylelint": "stylelint \"src/_css/*.scss\" --fix",
"test": "eslint src/ --fix --cache && stylelint \"src/_css/*.scss\" --fix && mocha 'test/**/*.test.js'",
"tsc": "tsc -p ./tsconfig.json",
"uglify": "esbuild src/Main.ts --bundle --minify --outfile=public/bundle.js",
"uglify-server": "esbuild server.ts --bundle --platform=node --minify --outfile=server.js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WillFlame14/jspuyo.git"
},
"author": "WillFlame, InaneQuark",
"license": "ISC",
"bugs": {
"url": "https://github.com/WillFlame14/jspuyo/issues"
},
"homepage": "https://github.com/WillFlame14/jspuyo#readme",
"dependencies": {
"express": "^4.17.1",
"firebase": "^9.6.10",
"firebaseui": "^0.600.0",
"mitt": "^2.1.0",
"socket.io": "^4.5.4",
"socket.io-client": "^4.5.4",
"vue": "^3.0.4"
},
"devDependencies": {
"@stanzilla/stylelint-config-rational-order": "github:Stanzilla/stylelint-config-rational-order",
"@types/chartist": "^0.11.0",
"@types/express": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"autoprefixer": "^10.2.6",
"chai": "^4.3.4",
"chai-exclude": "^2.0.3",
"deep-equal-in-any-order": "^1.1.7",
"esbuild": "^0.14.36",
"eslint": "^7.27.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mocha": "^9.2.2",
"node-dev": "^7.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.0",
"postcss-cli": "^8.3.1",
"sass": "^1.34.0",
"stylelint": "^13.13.1",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-order": "^4.1.0",
"typescript": "^4.1.2"
},
"lint-staged": {
"*.ts": "eslint --fix",
"*.scss": "stylelint --fix"
},
"browserslist": [
"defaults",
"not IE 11"
]
}