forked from performant-software/neatline-spa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "neatline",
"version": "0.2.0",
"private": true,
"proxy": "http://localhost:80",
"dependencies": {
"ajv": "^6.2.0",
"date-fns": "^1.29.0",
"dotenv": "^8.2.0",
"history": "^4.7.2",
"leaflet": "^1.3.4",
"leaflet-draw": "^0.4.9",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"ncp": "^2.0.0",
"node-sass-chokidar": "^1.3.0",
"npm-run-all": "^4.1.3",
"react": "^16.3.1",
"react-color": "^2.14.1",
"react-day-picker": "^7.1.10",
"react-dom": "^16.3.1",
"react-leaflet": "^1.8.0",
"react-localization": "^1.0.10",
"react-rangeslider": "^2.2.0",
"react-redux": "^5.0.6",
"react-router": "^4.3.1",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.17",
"react-split-pane": "^0.1.84",
"react-tabs": "^2.2.1",
"redux": "^3.7.2",
"redux-form": "^7.2.3",
"redux-saga": "^0.16.0",
"redux-thunk": "^2.2.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.83.0",
"uuid-random": "^1.0.6"
},
"scripts": {
"build-css": "node-sass-chokidar src/scss/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/scss/ -o src/ --watch --recursive",
"start": "npm-run-all -p watch-css start-js",
"start-js": "react-scripts start",
"build": "npm-run-all build-css build-js",
"build-js": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "node scripts/deploy.js"
}
}