forked from parksb/game-of-life
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·25 lines (25 loc) · 931 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
{
"private": true,
"eslintConfig": {
"extends": "troy-recommended"
},
"devDependencies": {
"eslint-config-troy-recommended": "git://github.com/TroyTae/eslint-config-troy-recommended.git",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"one-spaces": "^1.3.8",
"prettier": "^2.1.1",
"troyjs": "git+https://github.com/TroyTae/troyjs.git"
},
"scripts": {
"watch:json": "nodemon scripts/prebuild",
"watch:code": "webpack-dev-server --config scripts/webpack.config.js",
"start": "npm-run-all -p watch:json watch:code",
"build": "webpack --mode=production --config scripts/webpack.config.js",
"test": "npm run test:lint & npm run test:prettier",
"fix:lint": "eslint --fix --ext .ts src/",
"test:lint": "eslint --ext .ts src/ --ignore-pattern 'src/build/*'",
"fix:prettier": "npx prettier --write ./src/life",
"test:prettier": "prettier --check ./src/life"
}
}