-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.2 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.2 KB
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
{
"name": "openform",
"version": "1.0.0",
"description": "It is an open source application to create Survey, take feedback and create quiz",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:server": "cd server && nodemon server.js --exec babel-node --presets es2015,stage-0",
"start:client": "cd client && yarn start",
"start:dev": "concurrently \"yarn start:server\" \"yarn start:client\""
},
"repository": "https://github.com/TechFlexa/OpenForm",
"author": "Kuldeep Pisda",
"license": "MIT",
"private": false,
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.0.0-alpha.3",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"body-parser": "^1.18.3",
"concurrently": "^3.5.1",
"express": "^4.16.3",
"jsrsasign": "^8.0.12",
"mongoose": "^5.1.1",
"morgan": "^1.9.0",
"nodemon": "^1.17.4"
}
}