-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "fec",
"jest": {
"verbose": true
},
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"react-dev": "webpack -d --watch",
"start": "live-server ./dist",
"sass-dev": "sass --watch ./dist/sass-files/style.scss ./dist/sass-compiled/compiled.css",
"test": "jest spec"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.3",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"jest": "^24.9.0",
"react-test-renderer": "^16.12.0",
"style-loader": "^1.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"axios": "^0.19.0",
"bootstrap": "^4.4.0",
"jquery": "^3.4.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-star-ratings": "^2.3.0",
"react-test-renderer": "^16.12.0"
}
}