-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1001 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 1001 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
31
{
"name": "Stable-Matching",
"version": "1.0.0",
"homepage": "https://mdramos.github.io/stable-matching",
"devDependencies": {
"gh-pages": "^0.12.0",
"node-sass": "^4.3.0",
"react-scripts": "0.8.5",
"redux-logger": "^2.7.4"
},
"dependencies": {
"font-awesome": "^4.7.0",
"github-fork-ribbon-css": "^0.2.1",
"immutable": "^3.8.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^4.4.5",
"redux": "^3.6.0"
},
"scripts": {
"start": "npm run watch-css & react-scripts start",
"prod": "npm run build && NODE_ENV=production pushstate-server build",
"build": "npm run build-css && react-scripts build",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"build-css": "node-sass src/sass/base.scss src/styles/index.css",
"watch-css": "npm run build-css && node-sass src/sass/base.scss src/styles/index.css -w",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}