-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
52 lines (52 loc) · 2.53 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
51
52
{
"name": "dex-contracts-v2",
"version": "1.0.0",
"description": "This is the default package.json generated for your project",
"main": "index.js",
"scripts": {
"deploy": "node deployment/deploy-dex.js",
"deploy:debug": "node deployment/deploy-debug.js",
"test": "mocha ./test/*.test.js --timeout 0 --exit",
"postinstall": "node ./scripts/postinstall.js",
"test:wae": "mocha ./test/wae.test.js --timeout 0 --exit",
"test:wae-break": "mocha ./test/wae.test.js --timeout 0 --exit -b --failed-first",
"test:wae-debug": "node --inspect-brk node_modules/.bin/mocha ./test/wae.test.js --timeout 0 --exit -b",
"test:aedex-pool-factory": "mocha ./test/aedex-pool-factory.test.js --timeout 0 --exit",
"test:aedex-pool-factory-break": "mocha ./test/aedex-pool-factory.test.js --timeout 0 --exit -b --failed-first",
"test:aedex-pool-factory-debug": "node --inspect-brk node_modules/.bin/mocha ./test/aedex-pool-factory.test.js --timeout 0 --exit -b",
"test:aedex-router": "mocha ./test/aedex-router.test.js --timeout 0 --exit",
"test:aedex-router-break": "mocha ./test/aedex-router.test.js --timeout 0 --exit -b --failed-first",
"test:aedex-router-debug": "node --inspect-brk node_modules/.bin/mocha ./test/aedex-router.test.js --timeout 0 --exit -b",
"test:aedex-pair": "mocha ./test/aedex-pair.test.js --timeout 0 --exit",
"test:aedex-pair-break": "mocha ./test/aedex-pair.test.js --timeout 0 --exit -b --failed-first",
"test:aedex-pair-debug": "node --inspect-brk node_modules/.bin/mocha ./test/aedex-pair.test.js --timeout 0 --exit -b",
"test:aedex-wae": "mocha ./test/wae.test.js --timeout 0 --exit",
"test:aedex-wae-break": "mocha ./test/wae.test.js --timeout 0 --exit -b --failed-first",
"test:aedex-wae-debug": "node --inspect-brk node_modules/.bin/mocha ./test/wae.test.js --timeout 0 --exit -b"
},
"author": "",
"license": "ISC",
"dependencies": {
"fs": "^0.0.1-security"
},
"devDependencies": {
"@aeternity/aepp-sdk": "^13.0.1",
"@aeternity/aeproject": "^4.1.0",
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.4",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.4",
"@babel/register": "^7.15.3",
"@babel/runtime": "^7.8.4",
"aeternity-fungible-token": "^2.0.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"chai": "^4.3.4",
"crypto": "^1.0.1",
"eslint": "^8.2.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.6.0",
"mocha": "^9.0.3",
"dotenv": "^16.3.1"
}
}