-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 742 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 742 Bytes
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
{
"name": "altv-firescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:server && npm run build:client",
"build:server": "rollup --config rollup.config.server.js",
"build:client": "rollup --config rollup.config.client.js"
},
"author": "ithr0n",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"rollup": "^1.20.3",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"tslib": "^1.10.0",
"typescript": "^3.6.2"
}
}