-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.4 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.4 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
{
"name": "webcc",
"version": "0.0.1",
"description": "A RESTful C compiler",
"main": "src/index.mjs",
"author": "Kyle Coffey <me@phytolizer.dev>",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/node": "^20.4.4",
"@types/webpack": "^5.28.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"css-loader": "^6.8.1",
"eslint": "^8.45.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"fastify-plugin": "^4.5.1",
"html-webpack-plugin": "^5.5.3",
"http-server": "^14.1.1",
"path-browserify": "^1.0.1",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"typescript-json-schema": "^0.59.0",
"vitest": "^0.33.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"fastify": "^4.19.2",
"wabt": "^1.0.32"
},
"scripts": {
"format": "prettier-standard --format",
"build-web": "webpack --mode=production && tsc",
"dist": "webpack --mode=production && tsc",
"build": "node src/server/genSchema.js && tsc",
"serve": "node dist/src/server/index.js",
"web": "http-server dist -p 8081",
"lint": "eslint src test -f unix",
"test": "vitest --run --reporter=verbose"
}
}