-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.46 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
{
"name": "andromeda",
"version": "0.1.0",
"private": true,
"homepage": "http://dreamistlabs.github.io/andromeda",
"dependencies": {
"node-sass-chokidar": "0.0.3",
"npm-run-all": "^4.0.2",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"gh-pages": "^1.1.0",
"lorem-ipsum": "^1.0.4",
"react-scripts": "1.0.11"
},
"scripts": {
"build": "react-scripts build",
"build-andromeda-js": "npx babel src/js/andromeda.js --out-file public/assets/js/andromeda.js --source-maps",
"build-assets": "npm-run-all -p build-all-css build-andromeda-js",
"build-app": "npm run build-assets && npm run build",
"build-all-css": "node-sass-chokidar src/scss/ -o public/assets/stylesheets/",
"deploy": "gh-pages -d build",
"predeploy": "npm run build-app",
"start": "npm run watch-all",
"start-js": "react-scripts start",
"watch-andromeda-css": "node-sass-chokidar src/scss/ -o public/assets/stylesheets/ --watch --recursive",
"watch-andromeda-js": "npx babel src/js/andromeda.js --out-file public/assets/js/andromeda.js --watch",
"watch-andromeda-all": "npm-run-all -p watch-andromeda-js watch-andromeda-css",
"watch-docs-css": "node-sass-chokidar src/components/ -o src/components/ --watch --recursive",
"watch-all": "npm-run-all -p watch-andromeda-all watch-docs-css start-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}