forked from HarbourMasters/ship.equipment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.26 KB
/
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
34
35
36
37
38
39
{
"name": "hasher-js",
"version": "1.0.0",
"description": "Javascript-based ROM validation tool",
"main": "src/index.js",
"scripts": {
"build": "npx webpack --config webpack.prod.js && cpx \"src/db/*.*\" \"dist/db\" && cpx \"frontend/*.*\" \"dist\" && cpx \"frontend/hasherRes/*.*\" \"dist/hasherRes\"",
"build-dev": "npx webpack --config webpack.dev.js && cpx \"src/db/*.*\" \"dist/db\" && cpx \"frontend/*.*\" \"dist\" && cpx \"frontend/hasherRes/*.*\" \"dist/hasherRes\"",
"build-test": "npx webpack --config webpack.test.js",
"start": "node testServer.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/snarfblam/hasher-js.git"
},
"author": "Thomas Hudson",
"license": "WTFPL2",
"bugs": {
"url": "https://github.com/snarfblam/hasher-js/issues"
},
"homepage": "https://github.com/snarfblam/hasher-js#readme",
"dependencies": {
"axios": "^0.18.0",
"express": "^4.16.3",
"js-md5": "^0.7.3",
"js-sha1": "^0.6.0"
},
"optionalDependencies": {},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"cpx": "^1.5.0",
"mocha": "^5.2.0",
"ts-loader": "^4.4.1",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.3"
}
}