-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
40 lines (40 loc) · 1 KB
/
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
33
34
35
36
37
38
39
40
{
"name": "test-technique-front",
"version": "0.1.0",
"description": "Test technique de recrutement front-end Ubilab",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "npm run build:css & npm run build:js",
"build:css": "sass src/assets/sass:src/assets/css",
"build:js": "tsc",
"clean": "rm -r src/assets/css src/scripts/js",
"watch": "npm run watch:css & npm run watch:js",
"watch:css": "sass --watch src/assets/sass:src/assets/css",
"watch:js": "tsc --watch --preserveWatchOutput",
"serve": "http-server src/",
"start": "npm run watch & npm run serve"
},
"keywords": [
"test",
"technique",
"typescript",
"test",
"unitaire",
"integration",
"ubilab"
],
"author": "Ubilab",
"license": "MIT",
"dependencies": {
"http-server": "^14.0.0",
"sass": "^1.43.5",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"jest": "^27.3.1",
"ts-jest": "^27.0.7"
}
}