-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.21 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
{
"name": "futsal-payments",
"version": "0.1.0",
"private": true,
"devDependencies": {
"autoprefixer-stylus": "0.10.0",
"concurrently": "3.0.0",
"eslint-config-motley": "^4.0.0",
"node-sass": "^3.10.1",
"nodemon": "^1.11.0",
"react-scripts": "0.6.1",
"stylus": "0.54.5"
},
"dependencies": {
"classnames": "^2.2.5",
"history": "4.2.0",
"moment": "^2.15.2",
"re-base": "2.2.0",
"react": "^15.3.2",
"react-addons-css-transition-group": "15.3.2",
"react-datepicker": "^0.33.0",
"react-dom": "^15.3.2",
"react-router": "4.0.0-alpha.3",
"tachyons": "^4.5.4",
"tachyons-cli": "^1.0.8"
},
"scripts": {
"start": "react-scripts start",
"watch": "concurrently --names 'webpack, stylus' --prefix name 'npm run start' 'npm run styles:watch'",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"build-css": "node-sass --include-path src/css src/css/main.scss src/index.css",
"watch-css": "nodemon -e scss -x \"npm run build-css\"",
"css": "tachyons src/css/app.css > src/tachyons.css --minify",
"prestart": "npm run css build-css",
"prebuild": "npm run css build-css"
}
}