-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 933 Bytes
/
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
{
"dependencies": {
"angular": "1.8.0",
"angular-animate": "1.6.5",
"angular-ui-bootstrap": "^2.5.6",
"lodash": "^4.17.21",
"ng-context-menu": "^0.1.1",
"sass": "^1.22.3",
"whatwg-fetch": "^3"
},
"scripts": {
"build:sass": "sass --style compressed sass/style.scss >css/style.css",
"build:sass:watch": "sass --style=compressed --watch sass/style.scss:css/style.css",
"build": "yarn build:sass",
"lint:js": "eslint js/*.js my_node_modules/ai.js my_node_modules/game-state.js my_node_modules/game-move.js js/angular-components/*.js js/angular-directives/*.js",
"lint": "yarn lint:js"
},
"license": "MIT",
"private": true,
"devDependencies": {
"eslint": "^7",
"http-server": "^13.0.0",
"husky": "^4.2.5",
"jest": "^26.0.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn build",
"pre-push": "yarn lint && yarn build"
}
}
}