-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (40 loc) · 1.39 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
{
"name": "myriad.coinid",
"version": "0.1.0",
"private": true,
"homepage": "https://crowdfund-myriad.coinid.org",
"dependencies": {
"lodash-es": "^4.17.11",
"moment": "^2.22.2",
"moment-timezone": "^0.5.21",
"node-sass-chokidar": "^1.3.3",
"npm-run-all": "^4.1.3",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-scripts": "1.1.5"
},
"scripts": {
"build-css": "node-sass-chokidar --include-path ./src/assets/styles/ --include-path ./node_modules src/assets/styles/ -o src/assets/styles/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src/assets/styles/ --include-path ./node_modules ./src/assets/styles/ -o ./src/assets/styles/ --watch --recursive",
"test": "react-scripts test --env=jsdom",
"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",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"gh-pages": "^2.0.0",
"prettier": "^1.14.3"
}
}