-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 883 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 883 Bytes
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
{
"name": "fridayjs-app-react",
"version": "1.0.1",
"author": "Oleksandr Serhiienko <sigerello@gmail.com>",
"license": "ISC",
"scripts": {
"dev": "npm run clean && parcel serve ./src/index.html",
"prod-build": "npm run clean && parcel build ./src/index.html",
"prod-serve": "http-server ./dist",
"clean": "rm -rf ./dist"
},
"dependencies": {
"babel-regenerator-runtime": "^6.5.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-router-dom": "^4.3.1",
"react-transition-group": "^2.5.3"
},
"devDependencies": {
"@types/node": "^10.12.18",
"@types/react": "^16.7.20",
"@types/react-dom": "^16.0.11",
"@types/react-router-dom": "^4.3.1",
"@types/react-transition-group": "^2.0.15",
"autoprefixer": "^9.4.6",
"http-server": "^0.11.1",
"node-sass": "^4.11.0",
"parcel-bundler": "^1.11.0"
}
}