-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.42 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
40
41
42
43
{
"name": "adventure-assistant",
"version": "0.0.1",
"author": "Nicholas Rebhun",
"license": "ISC",
"keywords": ["Adventure", "Assistant", "RPG"],
"pre-commit": "lint",
"scripts": {
"build": "babel ./src/*.js -d lib",
"build-run": "npm run build && npm run webpack && npm run karma",
"karma": "karma start karma.conf.js",
"lint": "eslint --fix *.js",
"start":
"node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js",
"test": "./test.sh",
"webpack": "webpack src/*.js AdventureAssistant.bundle.js --target node"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"eslint": "^4.18.1",
"mocha": "^5.0.1",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"reactstrap": "^4.8.0",
"redux": "^3.7.2",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1"
},
"description":
"A tool to help tabletop-RPG players easily manage details such as weight, inventory, currency and more.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://www.github.com/nrebhun/AdventureAssistant.git"
}
}