forked from h3nnn4n/Rust-TypeScript-Wasm-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.35 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.35 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
{
"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.4.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.2",
"@types/jquery": "^3.3.29",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"copy-webpack-plugin": "^5.0.0",
"detect-mocha": "^0.1.0",
"eslint": "^5.15.3",
"hello-wasm-pack": "^0.1.0",
"mocha": "^6.0.2",
"mocha-loader": "^2.0.1",
"sinon": "^7.3.0",
"ts-loader": "^5.3.3",
"typescript": "^3.4.4",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"es6-promise": "^4.2.6",
"jquery": "^3.4.0",
"sprintf-js": "^1.1.2",
"tslib": "^1.9.3"
}
}