-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.53 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@cheprasov/cv",
"version": "1.2.0",
"author": "Alexander Cheprasov",
"description": "",
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cheprasov/ts-cv.git"
},
"dependencies": {
"@cheprasov/react-global-state": "^2.0.1",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"axios": "^1.6.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0"
},
"devDependencies": {
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/axios": "^0.14.0",
"@types/jest": "^28.1.4",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"css-loader": "^6.7.1",
"node-sass": "^9.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.1",
"ts-node": "^10.8.2",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"scripts": {
"build:prod": "webpack --mode production ; npm run update_hashes",
"build": "webpack --mode development",
"build:watch": "webpack --watch --mode development",
"eslint": "node ./node_modules/.bin/eslint ./src/",
"test": "jest",
"update_hashes": "ts-node --project tsconfig.node.json ./scripts/update_hashes.ts",
"deploy": "npm run build:prod ; ./scripts/copy_to_server.sh"
}
}