forked from EBSECan/donatemask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.05 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "donate-a-mask",
"version": "1.1.0",
"description": "Donate A Mask",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/creativetimofficial/argon-design-system-react.git"
},
"keywords": [
"react",
"reactjs",
"argon",
"argon-react",
"design",
"design-react",
"argon-design",
"argon-design-react",
"kit",
"react-kit",
"argon-design-system",
"argon-design-system-react",
"design-system-react"
],
"author": "Creative Tim",
"license": "MIT",
"bugs": {
"url": "https://github.com/creativetimofficial/argon-design-system-react/issues"
},
"homepage": ".",
"scripts": {
"start": "npm run start-react",
"start-react": "react-scripts start",
"start-server": "npm run dev --prefix ./server",
"dev": "concurrently npm:start-server npm:start-react",
"build": "react-scripts build && gulp licenses",
"test": "jest -c jest.config.json --runInBand --",
"test:watch": "jest -c jest.config.json --watch --",
"test:integration": "playwright test --config=playwright.config.js test/integration --",
"test:integration-debug": "playwright test --config=playwright.config.js test/integration --headed",
"coverage": "jest -c jest.config.json --collectCoverage --",
"eject": "react-scripts eject",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm install && npm start",
"compile-sass": "node-sass src/assets/scss/argon-design-system-react.scss src/assets/css/argon-design-system-react.css",
"minify-sass": "node-sass src/assets/scss/argon-design-system-react.scss src/assets/css/argon-design-system-react.min.css --output-style compressed",
"map-sass": "node-sass src/assets/scss/argon-design-system-react.scss src/assets/css/argon-design-system-react.css --source-map true",
"report": "node tools/report"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"bootstrap": "4.3.1",
"classnames": "2.3.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"headroom.js": "0.12.0",
"mongodb": "^4.2.2",
"node-sass": "latest",
"nouislider": "14.7.0",
"react": "17.0.2",
"react-datetime": "2.16.3",
"react-dom": "17.0.2",
"react-linkify": "^1.0.0-alpha",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"react-scripts": "latest",
"react-share": "^4.4.0",
"reactstrap": "8.9.0",
"swr": "^1.3.0"
},
"devDependencies": {
"@playwright/test": "^1.22.1",
"@types/react": "17.0.4",
"concurrently": "^7.2.0",
"gulp": "4.0.2",
"gulp-append-prepend": "1.0.9",
"handlebars": "^4.7.7",
"jest": "^28.0.3",
"mongodb-memory-server": "^8.5.2",
"postal-code-helpers": "^1.0.12",
"supertest": "^6.2.3"
},
"overrides": {
"glob-parent": "latest",
"nth-check": "latest"
}
}