-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.45 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.45 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
{
"name": "rust-wasm-template",
"version": "0.1.0",
"description": "A base template with rust, wasm-bindgen, webpack, mocha and babel",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"dev-server": "webpack-dev-server --config webpack.config.js",
"test-server": "webpack-dev-server --config webpack-test.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/h3nnn4n/Rust-Wasm-Template"
},
"keywords": [
"webassembly",
"wasm",
"rust",
"webpack"
],
"author": "Renan S Silva (h3nnn4n) <uber.renan@gmail.com>",
"homepage": "https://github.com/h3nnn4n/Rust-Wasm-Template",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.15.8",
"@types/jquery": "^3.5.7",
"babel-loader": "^8.2.2",
"chai": "^4.3.4",
"copy-webpack-plugin": "^9.0.1",
"detect-mocha": "^0.1.0",
"eslint": "^8.0.1",
"hello-wasm-pack": "^0.1.0",
"mocha": "^9.1.2",
"mocha-loader": "^5.1.5",
"sinon": "^11.1.2",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.1",
"yarn-upgrade-all": "^0.5.4"
},
"dependencies": {
"@popperjs/core": "^2.10.2",
"bootstrap": "^5.1.3",
"es6-promise": "^4.2.8",
"jquery": "^3.6.0",
"sprintf-js": "^1.1.2",
"tslib": "^2.3.1"
}
}