-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.1 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
{
"name": "pactum.io",
"version": "0.1.0",
"private": true,
"dependencies": {
"@coreui/react": "^1.0.10",
"axios": "^0.17.1",
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"bootstrap": "^4.0.0",
"create-react-class": "^15.6.3",
"css-loader": "^0.28.9",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"flow-bin": "^0.65.0",
"husky": "^0.14.3",
"install": "^0.10.4",
"jquery": "3.3.1",
"lint-staged": "^6.1.0",
"node-sass-chokidar": "^0.0.3",
"npm": "^5.6.0",
"npm-run-all": "^4.1.2",
"popper.js": "^1.12.9",
"prettier": "^1.10.2",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-fa": "^5.0.0",
"react-icons": "^2.2.7",
"react-mailchimp-subscribe": "^1.0.3",
"react-particles-js": "^2.1.0",
"react-popper": "^0.8.2",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.1",
"react-scroll": "^1.7.6",
"react-social-icons": "^2.8.1",
"react-sticky-el": "^1.0.16",
"react-textfit": "^1.1.0",
"react-transition-group": "^2.2.1",
"reactstrap": "^5.0.0-beta",
"serve": "^9.4.0",
"shx": "^0.2.2",
"style-loader": "^0.20.1",
"url-loader": "^0.6.2",
"webpack": "^3.10.0"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"scripts": {
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"precommit": "lint-staged",
"flow": "flow",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"clean": "shx rm -fr db dist build bin coverage*"
},
"devDependencies": {
"cross-env": "^5.1.3"
}
}