-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "towerfall-scoring",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"flow": "flow src",
"flow:install": "flow-typed install",
"lint": "eslint src",
"format": "eslint src --fix",
"start": "node index.js",
"test": "jest",
"test:coverage": "jest --coverage --collectCoverageFrom=src/**",
"test:watch": "jest --watch",
"validate": "npm run lint && npm run flow && npm run test"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.17.2",
"express": "^4.15.3",
"express-handlebars": "^3.0.0",
"handlebars-helpers": "^0.9.3",
"moment": "^2.18.1",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^3.19.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-prettier": "^2.1.2",
"flow-bin": "^0.47.0",
"jest": "^20.0.4",
"prettier": "^1.5.3"
}
}