-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
29 lines (29 loc) · 979 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
{
"name": "frontend_mentor_challenge_template",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@wdio/cli": "^7.16.14",
"@wdio/local-runner": "^7.16.15",
"@wdio/mocha-framework": "^7.16.15",
"@wdio/spec-reporter": "^7.16.14",
"@wdio/static-server-service": "^7.16.14",
"autoprefixer": "^10.4.2",
"cpx-fixed": "^1.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.7",
"simple-autoreload-server": "^0.2.10",
"tailwindcss": "^3.0.22"
},
"scripts": {
"build": "node scripts/build.js",
"check-formatting": "npx prettier -c .",
"format": "npx prettier -w .",
"serve": "npm-run-all --parallel watch simple-autoreload-server",
"simple-autoreload-server": "npx autoreload-server -d ./public/ -p 3000 -b",
"test": "npm-run-all check-formatting build wdio-test",
"watch": "npm run build -- --watch",
"wdio-test": "npx wdio run wdio.conf.js"
}
}