-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.46 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
{
"name": "cotd",
"version": "0.0.3",
"private": true,
"devDependencies": {
"@bahmutov/add-typescript-to-cypress": "^2.1.2",
"concurrently": "^4.1.0",
"cypress": "^8.4.0",
"nodemon": "^2.0.12",
"react-scripts": "3.4.1",
"typescript": "^3.7.5"
},
"dependencies": {
"autoprefixer-stylus": "1.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"firebase": "^7.6.0",
"prettier": "^1.19.1",
"prop-types": "^15.6.0",
"re-base": "4.0.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router-dom": "^5.3.0",
"react-transition-group": "^2.2.1",
"serve": "^12.0.1",
"stylus": "0.55.0"
},
"scripts": {
"start": "concurrently \"npm run ui\" \"npm run api\"",
"ui": "react-scripts start",
"api": "nodemon backend/server.js",
"watch": "concurrently --names \"webpack, stylus\" --prefix name \"npm run start\" \"npm run styles:watch\"",
"build": "react-scripts build",
"eject": "react-scripts eject",
"styles": "stylus -u autoprefixer-stylus ./src/css/style.styl -o ./src/css/style.css",
"styles:watch": "stylus -u autoprefixer-stylus -w ./src/css/style.styl -o ./src/css/style.css",
"cypress": "cypress open",
"cypress:run": "cypress run"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}