-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 962 Bytes
/
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
{
"module": "dist/index.js",
"main": "dist/index.js",
"dependencies": {
"@grakkit/stdlib-paper": "^1.0.12",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@types/node": "^16.4.6",
"babel-loader": "^8.2.2",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"got": "^11.8.2",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0"
},
"peerDependencies": {
"@grakkit/server": "^1.4.2"
},
"scripts": {
"start:server": "cd server & java -Xms2G -Xmx2G -jar paper.jar -nogui",
"start": "ts-node --project tsconfig-node.json ./scripts/start",
"build": "webpack --env production"
}
}