-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.16 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.16 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
40
{
"name": "css-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test:unit": "jest",
"test:e2e": "jest -c jest-puppeteer.config.js",
"test:screen": "jest -c jest-screenshot.config.js",
"build": "node-sass scss/ -o css/",
"watch": "chokidar \"scss/**\" -c \"npm run build\" --initial",
"serve": "http-server . -i -o -c-1",
"lint": "stylelint **/*.scss"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/expect-puppeteer": "^5.0.6",
"@types/jest": "^29.5.12",
"@types/jest-environment-puppeteer": "^5.0.6",
"@types/jest-image-snapshot": "^6.4.0",
"@types/node-sass": "^4.11.7",
"@types/puppeteer": "^7.0.4",
"@types/sass": "^1.45.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-image-snapshot": "^6.4.0",
"jest-puppeteer": "^10.0.1",
"node-sass": "^9.0.0",
"stylelint": "^16.2.1",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-scss": "^6.2.1",
"ts-jest": "^29.1.2"
},
"dependencies": {
"chokidar-cli": "^3.0.0"
}
}